aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2020-10-15 10:25:16 -0400
committerCarl Dong <contact@carldong.me>2021-02-18 14:49:10 -0500
commit120aaba9ac41af71a760aa0969dd090e96786fb3 (patch)
tree5a9b9bef714e040e0c605ec5762aaccc8f380ad2
parent417dafc1ee07af3319c2fe89758123cb8362ff16 (diff)
downloadbitcoin-120aaba9ac41af71a760aa0969dd090e96786fb3.tar.xz
tree-wide: Fix erroneous AcceptToMemoryPool replacements
-rw-r--r--src/txmempool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index 9f32275a77..197cd6cd4b 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;