Trait exonum::node::TransactionSend [] [src]

pub trait TransactionSend: Send + Sync {
    fn send(&self, tx: Box<Transaction>) -> Result<()>;
}

TransactionSend represents interface for sending transactions. For details see ApiSender implementation.

Required Methods

Sends transaction. This can include transaction verification.

Implementors