Trait TransactionPool

Source
pub trait TransactionPool: Send + Sync {
    // Required methods
    fn new_txs_watcher(&self) -> Receiver<()>;
    fn notify_skipped_txs(&self, tx_ids_and_reasons: Vec<(Bytes32, String)>);
}

Required Methods§

Source

fn new_txs_watcher(&self) -> Receiver<()>

Source

fn notify_skipped_txs(&self, tx_ids_and_reasons: Vec<(Bytes32, String)>)

Implementors§