pub trait IsInMempool {
    // Required method
    fn is_in_mempool(&mut self, txid: &u256) -> bool;
}

Required Methods§

source

fn is_in_mempool(&mut self, txid: &u256) -> bool

| Check if transaction is in mempool. |

Implementors§