pub trait BroadcasterInterface {
    // Required method
    fn broadcast_transaction(&self, tx: &Transaction);
}
Expand description

An interface to send a transaction to the Bitcoin network.

Required Methods§

source

fn broadcast_transaction(&self, tx: &Transaction)

Sends a transaction out to (hopefully) be mined.

Implementors§