aboutsummaryrefslogtreecommitdiff
path: root/src/script/interpreter.cpp
diff options
context:
space:
mode:
authorYuval Kogman <nothingmuch@woobling.org>2020-02-07 19:10:31 +0000
committerYuval Kogman <nothingmuch@woobling.org>2021-04-27 11:52:13 +0000
commitf9e37f33ce2d8b463a0bcbe7189c9bc5b36530b7 (patch)
treedc3c1c76f20cf7fed82c36a5e66a5e74e6482a37 /src/script/interpreter.cpp
parentc6d6bc8abb721be68a3d2cdba11ceb5e9814c9b1 (diff)
downloadbitcoin-f9e37f33ce2d8b463a0bcbe7189c9bc5b36530b7.tar.xz
doc: IsFinalTx comment about nSequence & OP_CLTV
It's somewhat surprising that a transaction's nLockTime field is ignored when all nSequence fields are final, so this change aims to clarify this behavior and cross reference relevant details of OP_CHECKLOCKTIMEVERIFY.
Diffstat (limited to 'src/script/interpreter.cpp')
-rw-r--r--src/script/interpreter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp
index abc0625bb1..6682d405c8 100644
--- a/src/script/interpreter.cpp
+++ b/src/script/interpreter.cpp
@@ -1741,9 +1741,9 @@ bool GenericTransactionSignatureChecker<T>::CheckLockTime(const CScriptNum& nLoc
if (nLockTime > (int64_t)txTo->nLockTime)
return false;
- // Finally the nLockTime feature can be disabled and thus
- // CHECKLOCKTIMEVERIFY bypassed if every txin has been
- // finalized by setting nSequence to maxint. The
+ // Finally the nLockTime feature can be disabled in IsFinalTx()
+ // and thus CHECKLOCKTIMEVERIFY bypassed if every txin has
+ // been finalized by setting nSequence to maxint. The
// transaction would be allowed into the blockchain, making
// the opcode ineffective.
//