aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/txmempool.cpp7
-rw-r--r--src/txmempool.h3
2 files changed, 0 insertions, 10 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index 4f740b7c0a..9df9b0e45a 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -1076,11 +1076,4 @@ void CTxMemPool::GetTransactionAncestry(const uint256& txid, size_t& ancestors,
}
}
-bool CTxMemPool::TransactionWithinChainLimit(const uint256& txid, size_t ancestor_limit, size_t descendant_limit) const {
- LOCK(cs);
- auto it = mapTx.find(txid);
- return it == mapTx.end() || (it->GetCountWithAncestors() < ancestor_limit &&
- CalculateDescendantMaximum(it) < descendant_limit);
-}
-
SaltedTxidHasher::SaltedTxidHasher() : k0(GetRand(std::numeric_limits<uint64_t>::max())), k1(GetRand(std::numeric_limits<uint64_t>::max())) {}
diff --git a/src/txmempool.h b/src/txmempool.h
index d32c29a18f..bda812b42f 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -626,9 +626,6 @@ public:
*/
void GetTransactionAncestry(const uint256& txid, size_t& ancestors, size_t& descendants) const;
- /** Returns false if the transaction is in the mempool and not within the chain limit specified. */
- bool TransactionWithinChainLimit(const uint256& txid, size_t ancestor_limit, size_t descendant_limit) const;
-
unsigned long size()
{
LOCK(cs);