From 110a0f405cd696ebfd6edce07c1b347723e84a0f Mon Sep 17 00:00:00 2001 From: pablomartin4btc Date: Sun, 10 Aug 2025 15:11:12 -0300 Subject: [PATCH] interfaces, chain, refactor: Remove unused getTipLocator Also removed CChain::GetLocator() and replaced its call with GetLocator() which uses LocatorEntries instead. Co-authored-by: ryanofsky Co-authored-by: l0rinc --- src/chain.cpp | 5 ----- src/chain.h | 3 --- src/interfaces/chain.h | 3 --- src/node/interfaces.cpp | 5 ----- src/validation.cpp | 2 +- 5 files changed, 1 insertion(+), 17 deletions(-) diff --git a/src/chain.cpp b/src/chain.cpp index 82007a8a1e7..4e2d1bf0ac8 100644 --- a/src/chain.cpp +++ b/src/chain.cpp @@ -52,11 +52,6 @@ CBlockLocator GetLocator(const CBlockIndex* index) return CBlockLocator{LocatorEntries(index)}; } -CBlockLocator CChain::GetLocator() const -{ - return ::GetLocator(Tip()); -} - const CBlockIndex *CChain::FindFork(const CBlockIndex *pindex) const { if (pindex == nullptr) { return nullptr; diff --git a/src/chain.h b/src/chain.h index f5bfdb2fb4b..68aa612bfc4 100644 --- a/src/chain.h +++ b/src/chain.h @@ -467,9 +467,6 @@ public: /** Set/initialize a chain with a given tip. */ void SetTip(CBlockIndex& block); - /** Return a CBlockLocator that refers to the tip in of this chain. */ - CBlockLocator GetLocator() const; - /** Find the last common block between this chain and a block index entry. */ const CBlockIndex* FindFork(const CBlockIndex* pindex) const; diff --git a/src/interfaces/chain.h b/src/interfaces/chain.h index 56716ec673f..f45cb8e5987 100644 --- a/src/interfaces/chain.h +++ b/src/interfaces/chain.h @@ -143,9 +143,6 @@ public: //! pruned), and contains transactions. virtual bool haveBlockOnDisk(int height) = 0; - //! Get locator for the current chain tip. - virtual CBlockLocator getTipLocator() = 0; - //! Return a locator that refers to a block in the active chain. //! If specified block is not in the active chain, return locator for the latest ancestor that is in the chain. virtual CBlockLocator getActiveChainLocator(const uint256& block_hash) = 0; diff --git a/src/node/interfaces.cpp b/src/node/interfaces.cpp index 62172930dca..d7ada5ae75b 100644 --- a/src/node/interfaces.cpp +++ b/src/node/interfaces.cpp @@ -559,11 +559,6 @@ public: const CBlockIndex* block{chainman().ActiveChain()[height]}; return block && ((block->nStatus & BLOCK_HAVE_DATA) != 0) && block->nTx > 0; } - CBlockLocator getTipLocator() override - { - LOCK(::cs_main); - return chainman().ActiveChain().GetLocator(); - } CBlockLocator getActiveChainLocator(const uint256& block_hash) override { LOCK(::cs_main); diff --git a/src/validation.cpp b/src/validation.cpp index 61dec1314b3..fbc1b03c578 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -2919,7 +2919,7 @@ bool Chainstate::FlushStateToDisk( } if (full_flush_completed && m_chainman.m_options.signals) { // Update best block in wallet (so we can detect restored wallets). - m_chainman.m_options.signals->ChainStateFlushed(this->GetRole(), m_chain.GetLocator()); + m_chainman.m_options.signals->ChainStateFlushed(this->GetRole(), GetLocator(m_chain.Tip())); } } catch (const std::runtime_error& e) { return FatalError(m_chainman.GetNotifications(), state, strprintf(_("System error while flushing: %s"), e.what()));