diff options
author | Carl Dong <contact@carldong.me> | 2020-10-15 10:25:16 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-02-18 14:49:10 -0500 |
commit | 120aaba9ac41af71a760aa0969dd090e96786fb3 (patch) | |
tree | 5a9b9bef714e040e0c605ec5762aaccc8f380ad2 /src | |
parent | 417dafc1ee07af3319c2fe89758123cb8362ff16 (diff) |
tree-wide: Fix erroneous AcceptToMemoryPool replacements
Diffstat (limited to 'src')
-rw-r--r-- | src/txmempool.cpp | 2 |
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; |