pub trait ClientTxCommit {
    type Response: GetErr + GetEvents;

    // Required method
    fn broadcast_tx_commit<'life0, 'life1, 'async_trait>(
        &'life0 self,
        raw_tx: &'life1 RawTx
    ) -> Pin<Box<dyn Future<Output = Result<Self::Response, ChainError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Associated Types§

Required Methods§

source

fn broadcast_tx_commit<'life0, 'life1, 'async_trait>( &'life0 self, raw_tx: &'life1 RawTx ) -> Pin<Box<dyn Future<Output = Result<Self::Response, ChainError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§

source§

impl<T> ClientTxCommit for Twhere T: Client + Sync,