diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-01-03 13:03:43 +0100 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-01-16 16:38:11 +0100 |
commit | fa0f0436d83288262d7d764b1d239c1a6de6146f (patch) | |
tree | 5f7c84d5d6eb344db23e9fa875d17115a0258696 /src/node | |
parent | 599e941c194749dab35d81a4e898fd79dd2ed129 (diff) |
Add BlockManager::LoadingBlocks()
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/blockstorage.h | 5 | ||||
-rw-r--r-- | src/node/interfaces.cpp | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/node/blockstorage.h b/src/node/blockstorage.h index cdf667c754..5e82746b6b 100644 --- a/src/node/blockstorage.h +++ b/src/node/blockstorage.h @@ -176,6 +176,11 @@ public: /** Store block on disk. If dbp is not nullptr, then it provides the known position of the block within a block file on disk. */ FlatFilePos SaveBlockToDisk(const CBlock& block, int nHeight, CChain& active_chain, const CChainParams& chainparams, const FlatFilePos* dbp); + [[nodiscard]] bool LoadingBlocks() const + { + return fImporting || fReindex; + } + /** Calculate the amount of disk space the block & undo files currently use */ uint64_t CalculateCurrentUsage(); diff --git a/src/node/interfaces.cpp b/src/node/interfaces.cpp index 4f3dc99bbf..eda359568f 100644 --- a/src/node/interfaces.cpp +++ b/src/node/interfaces.cpp @@ -711,8 +711,9 @@ public: LOCK(::cs_main); return chainman().m_blockman.m_have_pruned; } - bool isReadyToBroadcast() override { return !node::fImporting && !node::fReindex && !isInitialBlockDownload(); } - bool isInitialBlockDownload() override { + bool isReadyToBroadcast() override { return !chainman().m_blockman.LoadingBlocks() && !isInitialBlockDownload(); } + bool isInitialBlockDownload() override + { return chainman().ActiveChainstate().IsInitialBlockDownload(); } bool shutdownRequested() override { return ShutdownRequested(); } |