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)>);
}
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)>);
}