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

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

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

Required methods

fn send(&self, tx: Box<dyn Transaction>) -> Result<()>

Sends transaction. This can include transaction verification.

Loading content...

Implementors

impl TransactionSend for ApiSender
[src]

Loading content...