aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2017-01-13 16:25:15 -0500
committerAlex Morcos <morcos@chaincode.com>2017-01-17 13:21:31 -0500
commit2a7b56cc0e33d74b548e38aa987e003a9801c8bd (patch)
treecfc49b03fb23f1d0c12680fd8fa58107ed6ba03d /src/txmempool.cpp
parentac9d3d25f77a25359f362661b0a07afc68b95136 (diff)
downloadbitcoin-2a7b56cc0e33d74b548e38aa987e003a9801c8bd.tar.xz
CBlockPolicyEstimator now uses hard coded minimum bucket feerate
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index 5b085f492d..e3d4eff600 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -358,7 +358,7 @@ CTxMemPool::CTxMemPool(const CFeeRate& _minReasonableRelayFee) :
// of transactions in the pool
nCheckFrequency = 0;
- minerPolicyEstimator = new CBlockPolicyEstimator(_minReasonableRelayFee);
+ minerPolicyEstimator = new CBlockPolicyEstimator();
}
CTxMemPool::~CTxMemPool()