diff options
| author | Alex Morcos <[email protected]> | 2017-01-13 16:25:15 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-01-17 13:21:31 -0500 |
| commit | 2a7b56cc0e33d74b548e38aa987e003a9801c8bd (patch) | |
| tree | cfc49b03fb23f1d0c12680fd8fa58107ed6ba03d /src/txmempool.cpp | |
| parent | Change fee estimation bucket limit variable names (diff) | |
| download | discoin-2a7b56cc0e33d74b548e38aa987e003a9801c8bd.tar.xz discoin-2a7b56cc0e33d74b548e38aa987e003a9801c8bd.zip | |
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 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() |