From 120aaba9ac41af71a760aa0969dd090e96786fb3 Mon Sep 17 00:00:00 2001 From: Carl Dong Date: Thu, 15 Oct 2020 10:25:16 -0400 Subject: [PATCH] tree-wide: Fix erroneous AcceptToMemoryPool replacements --- src/txmempool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 9f32275a770..197cd6cd4bd 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -356,7 +356,7 @@ void CTxMemPool::AddTransactionsUpdated(unsigned int n) void CTxMemPool::addUnchecked(const CTxMemPoolEntry &entry, setEntries &setAncestors, bool validFeeEstimate) { // Add to memory pool without checking anything. - // Used by AcceptToMemoryPool(::ChainstateActive(), ), which DOES do + // Used by AcceptToMemoryPool(), which DOES do // all the appropriate checks. indexed_transaction_set::iterator newit = mapTx.insert(entry).first;