diff options
author | Samuel Dobson <dobsonsa68@gmail.com> | 2021-10-12 14:36:51 +1300 |
---|---|---|
committer | Samuel Dobson <dobsonsa68@gmail.com> | 2021-10-12 14:36:51 +1300 |
commit | a0efe529e4fd053b890450413b9ca5e1bcd8f2c2 (patch) | |
tree | 79411554469949d6d3d988420d13e3bb986bba40 /src/validation.cpp | |
parent | e418a8e675e4dbca9f9c3cf7dd4633aa3c6c196e (diff) |
Fix outdated comments referring to ::ChainActive()
Diffstat (limited to 'src/validation.cpp')
-rw-r--r-- | src/validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 14dcd2c24b..c21a87e6d3 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -219,7 +219,7 @@ bool TestLockPointValidity(CChain& active_chain, const LockPoints* lp) // If there are relative lock times then the maxInputBlock will be set // If there are no relative lock times, the LockPoints don't depend on the chain if (lp->maxInputBlock) { - // Check whether ::ChainActive() is an extension of the block at which the LockPoints + // Check whether active_chain is an extension of the block at which the LockPoints // calculation was valid. If not LockPoints are no longer valid if (!active_chain.Contains(lp->maxInputBlock)) { return false; |