aboutsummaryrefslogtreecommitdiff
path: root/src/node/blockstorage.cpp
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2022-04-27 12:21:22 +0200
committerJon Atack <jon@atack.com>2022-04-28 20:42:08 +0200
commited12c0a49d3c64d170aca9e66ef32a57d7933eeb (patch)
tree6f74d670d7c39c3cdd4531e48156f5e3fc6757a6 /src/node/blockstorage.cpp
parentdabec990135cc32584e822126ec49f8b31350837 (diff)
downloadbitcoin-ed12c0a49d3c64d170aca9e66ef32a57d7933eeb.tar.xz
blockstorage, refactor: make GetFirstStoredBlock() a member of BlockManager
instead of a global
Diffstat (limited to 'src/node/blockstorage.cpp')
-rw-r--r--src/node/blockstorage.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node/blockstorage.cpp b/src/node/blockstorage.cpp
index 25771aacee..be45eb7ba9 100644
--- a/src/node/blockstorage.cpp
+++ b/src/node/blockstorage.cpp
@@ -390,7 +390,8 @@ bool BlockManager::IsBlockPruned(const CBlockIndex* pblockindex)
return (m_have_pruned && !(pblockindex->nStatus & BLOCK_HAVE_DATA) && pblockindex->nTx > 0);
}
-const CBlockIndex* GetFirstStoredBlock(const CBlockIndex* start_block) {
+const CBlockIndex* BlockManager::GetFirstStoredBlock(const CBlockIndex* start_block)
+{
AssertLockHeld(::cs_main);
assert(start_block);
const CBlockIndex* last_block = start_block;