[#IsFinalTx] = IsFinalTx :mrdocs: 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>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool IsFinalTx( xref:CTransaction.adoc[CTransaction] const& tx, int nBlockHeight, int64_t nBlockTime); ---- == Return Value true if tx is final at the given height and time. == Parameters [cols="1,4"] |=== | Name| Description | *tx* | The transaction to test for finality. | *nBlockHeight* | Height of the block that would contain tx. | *nBlockTime* | Time of the block that would contain tx. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#