pub trait NotifyTransaction {
    // Required method
    fn notify_transaction(&mut self, transaction: &Transaction) -> bool;
}

Required Methods§

source

fn notify_transaction(&mut self, transaction: &Transaction) -> bool

| Notifies of transactions added to mempool | or appearing in blocks |

Implementors§