pub trait CheckFinalTx {
    // Required method
    fn check_final_tx(&mut self, tx: &Transaction) -> bool;
}

Required Methods§

source

fn check_final_tx(&mut self, tx: &Transaction) -> bool

| Check if transaction will be final given | chain height current time. |

Implementors§