pub trait AcceptsTxnSubmits<I>
where I: NodeType,
{ // Required methods fn submit_txns<'life0, 'async_trait>( &'life0 self, txns: Vec<<I as NodeType>::Transaction>, ) -> Pin<Box<dyn Future<Output = Result<Vec<Commitment<<I as NodeType>::Transaction>>, BuildError>> + Send + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait; fn txn_status<'life0, 'async_trait>( &'life0 self, txn_hash: Commitment<<I as NodeType>::Transaction>, ) -> Pin<Box<dyn Future<Output = Result<TransactionStatus, BuildError>> + Send + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait; }

Required Methods§

source

fn submit_txns<'life0, 'async_trait>( &'life0 self, txns: Vec<<I as NodeType>::Transaction>, ) -> Pin<Box<dyn Future<Output = Result<Vec<Commitment<<I as NodeType>::Transaction>>, BuildError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn txn_status<'life0, 'async_trait>( &'life0 self, txn_hash: Commitment<<I as NodeType>::Transaction>, ) -> Pin<Box<dyn Future<Output = Result<TransactionStatus, BuildError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§