aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-11-02 15:48:08 +0100
committerMarcoFalke <falke.marco@gmail.com>2021-11-02 15:43:43 +0100
commitfa32cc0682a0aa3420e6a11031721fcb6c50fa44 (patch)
tree58d4ca21a5f7361f86d60e261b6aa766740773fd /src/txmempool.cpp
parent9e3f7dcaa2f89efff48d299132f4998bf701c264 (diff)
downloadbitcoin-fa32cc0682a0aa3420e6a11031721fcb6c50fa44.tar.xz
doc: Remove fee delta TODO from txmempool.cpp
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index 9bc2377c63..acd0ba3478 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -422,8 +422,6 @@ void CTxMemPool::addUnchecked(const CTxMemPoolEntry &entry, setEntries &setAnces
indexed_transaction_set::iterator newit = mapTx.insert(entry).first;
// Update transaction for any feeDelta created by PrioritiseTransaction
- // TODO: refactor so that the fee delta is calculated before inserting
- // into mapTx.
CAmount delta{0};
ApplyDelta(entry.GetTx().GetHash(), delta);
if (delta) {