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/index/base.cpp | |
parent | e418a8e675e4dbca9f9c3cf7dd4633aa3c6c196e (diff) |
Fix outdated comments referring to ::ChainActive()
Diffstat (limited to 'src/index/base.cpp')
-rw-r--r-- | src/index/base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index/base.cpp b/src/index/base.cpp index 3ca86a310e..fc6dd77a72 100644 --- a/src/index/base.cpp +++ b/src/index/base.cpp @@ -321,7 +321,7 @@ bool BaseIndex::BlockUntilSyncedToCurrentChain() const { // Skip the queue-draining stuff if we know we're caught up with - // ::ChainActive().Tip(). + // m_chain.Tip(). LOCK(cs_main); const CBlockIndex* chain_tip = m_chainstate->m_chain.Tip(); const CBlockIndex* best_block_index = m_best_block_index.load(); |