Skip to content

Commit

Permalink
net: remove now unused global 'g_initial_block_download_completed'
Browse files Browse the repository at this point in the history
  • Loading branch information
furszy committed Jan 23, 2024
1 parent aff7d92 commit 27f260a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/net_processing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2086,7 +2086,6 @@ void PeerManagerImpl::NewPoWValidBlock(const CBlockIndex *pindex, const std::sha
void PeerManagerImpl::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload)
{
SetBestBlock(pindexNew->nHeight, std::chrono::seconds{pindexNew->GetBlockTime()});
SetServiceFlagsIBDCache(!fInitialDownload);

// Don't relay inventory during initial block download.
if (fInitialDownload) return;
Expand Down
8 changes: 0 additions & 8 deletions src/protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

#include <atomic>

static std::atomic<bool> g_initial_block_download_completed(false);

namespace NetMsgType {
const char* VERSION = "version";
const char* VERACK = "verack";
Expand Down Expand Up @@ -125,12 +123,6 @@ bool CMessageHeader::IsCommandValid() const
return true;
}

void SetServiceFlagsIBDCache(bool state) {
g_initial_block_download_completed = state;
}

bool GetServicesFlagsIBDCache() { return g_initial_block_download_completed; }

CInv::CInv()
{
type = 0;
Expand Down
4 changes: 0 additions & 4 deletions src/protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,6 @@ std::vector<std::string> serviceFlagsToStr(uint64_t flags);
*/
constexpr ServiceFlags SeedsServiceFlags() { return ServiceFlags(NODE_NETWORK | NODE_WITNESS); }

/** Set the current IBD status in order to figure out the desirable service flags */
void SetServiceFlagsIBDCache(bool status);
bool GetServicesFlagsIBDCache();

/**
* Checks if a peer with the given service flags may be capable of having a
* robust address-storage DB.
Expand Down

0 comments on commit 27f260a

Please sign in to comment.