aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-06-08 16:57:40 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-08-20 16:55:34 +0200
commitfae878603345854527c211ebb7d1967f12c8bb9d (patch)
tree23a197cf47de75a8d22efc095c21c2bf84cbc69c
parentfab89006d656261770503e54fdd01ac9167bdd49 (diff)
downloadbitcoin-fae878603345854527c211ebb7d1967f12c8bb9d.tar.xz
doc: Fix validation typo
-rw-r--r--src/validation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp
index ec457da5cc..6fa70ff2e1 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().