From fae878603345854527c211ebb7d1967f12c8bb9d Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 8 Jun 2021 16:57:40 +0200 Subject: [PATCH] doc: Fix validation typo --- src/validation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/validation.cpp b/src/validation.cpp index ec457da5cc2..6fa70ff2e15 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -191,7 +191,7 @@ bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, i // CheckFinalTx() uses active_chain_tip.Height()+1 to evaluate // nLockTime because when IsFinalTx() is called within - // CBlock::AcceptBlock(), the height of the block *being* + // AcceptBlock(), the height of the block *being* // evaluated is what is used. Thus if we want to know if a // transaction can be part of the *next* block, we need to call // IsFinalTx() with one more than active_chain_tip.Height().