diff --git a/src/txmempool.cpp b/src/txmempool.cpp index e24d8d7b98..6a525c97db 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -993,18 +993,6 @@ void CTxMemPool::UpdateParent(txiter entry, txiter parent, bool add) } } -const CTxMemPoolEntry::Parents & CTxMemPool::GetMemPoolParents(txiter entry) const -{ - assert(entry != mapTx.end()); - return entry->GetMemPoolParentsConst(); -} - -const CTxMemPoolEntry::Children & CTxMemPool::GetMemPoolChildren(txiter entry) const -{ - assert(entry != mapTx.end()); - return entry->GetMemPoolChildrenConst(); -} - CFeeRate CTxMemPool::GetMinFee(size_t sizelimit) const { LOCK(cs); if (!blockSinceLastRollingFeeBump || rollingMinimumFeeRate == 0) diff --git a/src/txmempool.h b/src/txmempool.h index 9417902120..8764bbcf13 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -576,8 +576,6 @@ public: typedef std::set setEntries; - const CTxMemPoolEntry::Parents & GetMemPoolParents(txiter entry) const EXCLUSIVE_LOCKS_REQUIRED(cs); - const CTxMemPoolEntry::Children & GetMemPoolChildren(txiter entry) const EXCLUSIVE_LOCKS_REQUIRED(cs); uint64_t CalculateDescendantMaximum(txiter entry) const EXCLUSIVE_LOCKS_REQUIRED(cs); private: typedef std::map cacheMap;