pub trait SendTransactionBanksClient: SendTransaction {
    // Required method
    fn send<'a>(
        &self,
        client: &'a mut BanksClient,
        transaction: Transaction
    ) -> Pin<Box<dyn Future<Output = ProgramClientResult<Self::Output>> + Send + 'a>>;
}
Expand description

Extends basic SendTransaction trait with function send where client is &mut BanksClient. Required for ProgramBanksClient.

Required Methods§

source

fn send<'a>( &self, client: &'a mut BanksClient, transaction: Transaction ) -> Pin<Box<dyn Future<Output = ProgramClientResult<Self::Output>> + Send + 'a>>

Implementors§