diff options
author | James O'Beirne <james.obeirne@gmail.com> | 2019-04-10 14:34:46 -0400 |
---|---|---|
committer | James O'Beirne <james.obeirne@gmail.com> | 2019-07-08 11:33:13 -0400 |
commit | 682a1d0f2004d808b87b3106d0dfae547005e638 (patch) | |
tree | 33d9bcfcc7dd0614af9a379420a5a698b29cf7be /src/txdb.cpp | |
parent | 55d525ab9004631d30dcc60a1ec5d9cd6c6afe56 (diff) |
refactoring: remove mapBlockIndex global
in lieu of ::BlockIndex().
Diffstat (limited to 'src/txdb.cpp')
-rw-r--r-- | src/txdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.cpp b/src/txdb.cpp index 73fe2a8ee4..90b92969b9 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -250,7 +250,7 @@ bool CBlockTreeDB::LoadBlockIndexGuts(const Consensus::Params& consensusParams, pcursor->Seek(std::make_pair(DB_BLOCK_INDEX, uint256())); - // Load mapBlockIndex + // Load m_block_index while (pcursor->Valid()) { boost::this_thread::interruption_point(); if (ShutdownRequested()) return false; |