diff options
author | Alex Morcos <morcos@chaincode.com> | 2016-11-10 14:16:42 -0500 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2017-01-04 12:03:44 -0500 |
commit | 4df44794c9f71d47648e858385d37eae6d0a9db3 (patch) | |
tree | 9eae970117aa4740dfdaa2dadc61c07018619b88 /src/policy/fees.h | |
parent | 123ea7362478cfe801341e8fecade030a903ad3d (diff) |
Remove extraneous LogPrint from fee estimation
Once priority estimation was removed, not all transactions in the mempool are tracked in the fee estimation mempool tracking. So there is no error if a transaction is not found for removal.
Diffstat (limited to 'src/policy/fees.h')
-rw-r--r-- | src/policy/fees.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.h b/src/policy/fees.h index 1f10cfb237..c88ba5b3cc 100644 --- a/src/policy/fees.h +++ b/src/policy/fees.h @@ -212,7 +212,7 @@ public: void processTransaction(const CTxMemPoolEntry& entry, bool fCurrentEstimate); /** Remove a transaction from the mempool tracking stats*/ - void removeTx(uint256 hash); + bool removeTx(uint256 hash); /** Return a feerate estimate */ CFeeRate estimateFee(int confTarget); |