pub trait TryGetTxStatus {
    // Required method
    fn try_get_tx_status(
        &mut self,
        txid: &u256,
        tx_status: &mut WalletTxStatus,
        num_blocks: &mut i32,
        block_time: &mut i64
    ) -> bool;
}

Required Methods§

source

fn try_get_tx_status( &mut self, txid: &u256, tx_status: &mut WalletTxStatus, num_blocks: &mut i32, block_time: &mut i64 ) -> bool

| Try to get updated status for a particular | transaction, if possible without blocking. |

Implementors§