IsFinalTx

Check if transaction is final and can be included in a block with the specified height and time. Consensus critical.

Synopsis

Declared in <consensus/tx_verify.h>

bool
IsFinalTx(
    CTransaction const& tx,
    int nBlockHeight,
    int64_t nBlockTime);

Return Value

true if tx is final at the given height and time.

Parameters

NameDescription
txThe transaction to test for finality.
nBlockHeightHeight of the block that would contain tx.
nBlockTimeTime of the block that would contain tx.