diff options
| author | Mark Friedenbach <[email protected]> | 2015-08-10 18:08:30 -0700 |
|---|---|---|
| committer | Mark Friedenbach <[email protected]> | 2015-08-10 18:08:30 -0700 |
| commit | e846b2a1e96f27257cbb79f7f61bfaf3d873bb97 (patch) | |
| tree | 072b11723fe6db4ce93890ceaec167a43f0e6aa1 /src/script/interpreter.cpp | |
| parent | Merge pull request #6532 (diff) | |
| download | discoin-e846b2a1e96f27257cbb79f7f61bfaf3d873bb97.tar.xz discoin-e846b2a1e96f27257cbb79f7f61bfaf3d873bb97.zip | |
Correct a possibly intentional pun that is nevertheless hard to read: "two times of nLockTime." What is meant is that there are two kinds, or categories of nLockTime.
Diffstat (limited to 'src/script/interpreter.cpp')
| -rw-r--r-- | src/script/interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index 0b78fdf5a..bd5e54b33 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -1128,7 +1128,7 @@ bool TransactionSignatureChecker::CheckSig(const vector<unsigned char>& vchSigIn bool TransactionSignatureChecker::CheckLockTime(const CScriptNum& nLockTime) const { - // There are two times of nLockTime: lock-by-blockheight + // There are two kinds of nLockTime: lock-by-blockheight // and lock-by-blocktime, distinguished by whether // nLockTime < LOCKTIME_THRESHOLD. // |