1
2
3
4
5
pub trait BitcoinNode {
    fn broadcast_transaction(&self, tx: &BitcoinTransaction);
}

pub type BitcoinTransaction = String;