pub trait AcceptsTxnSubmits<I>
where I: NodeType,
{ // Required method 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; }

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,

Implementors§