From 2a7b56cc0e33d74b548e38aa987e003a9801c8bd Mon Sep 17 00:00:00 2001 From: Alex Morcos Date: Fri, 13 Jan 2017 16:25:15 -0500 Subject: CBlockPolicyEstimator now uses hard coded minimum bucket feerate --- src/txmempool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/txmempool.cpp') diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 5b085f492..e3d4eff60 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() -- cgit v1.2.3