pub trait TransactionsImporter: Send + Sync {
// Required method
fn import<'life0, 'async_trait>(
&'life0 self,
up_to_beacon: BlockNumber,
) -> Pin<Box<dyn Future<Output = StdResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Cardano transactions importer