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

Cardano transactions importer

Required Methods§

source

fn import<'life0, 'async_trait>( &'life0 self, up_to_beacon: ImmutableFileNumber ) -> Pin<Box<dyn Future<Output = StdResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Returns all transactions up to the given beacon

Implementors§