Trait lightning::chain::chaininterface::BroadcasterInterface[][src]

pub trait BroadcasterInterface: Sync + Send {
    fn broadcast_transaction(&self, tx: &Transaction);
}

An interface to send a transaction to the Bitcoin network.

Required Methods

Sends a transaction out to (hopefully) be mined.

Implementors