pub trait SendTransactionBanksClient: SendTransaction {
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.