diff options
author | Alex Morcos <morcos@chaincode.com> | 2017-01-13 16:25:15 -0500 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2017-01-17 13:21:31 -0500 |
commit | 2a7b56cc0e33d74b548e38aa987e003a9801c8bd (patch) | |
tree | cfc49b03fb23f1d0c12680fd8fa58107ed6ba03d /src/txmempool.cpp | |
parent | ac9d3d25f77a25359f362661b0a07afc68b95136 (diff) |
CBlockPolicyEstimator now uses hard coded minimum bucket feerate
Diffstat (limited to 'src/txmempool.cpp')
-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 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() |