diff options
| author | Alex Morcos <[email protected]> | 2017-01-13 16:53:21 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-01-17 13:21:35 -0500 |
| commit | ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3 (patch) | |
| tree | 2cb9752e8e999ca76984a3f169b5045bdbf31708 /src/txmempool.cpp | |
| parent | CBlockPolicyEstimator now uses hard coded minimum bucket feerate (diff) | |
| download | discoin-ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3.tar.xz discoin-ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3.zip | |
Remove unnecessary min fee argument in CTxMemPool constructor
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 e3d4eff60..ac0cb6044 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -348,7 +348,7 @@ void CTxMemPoolEntry::UpdateAncestorState(int64_t modifySize, CAmount modifyFee, assert(int(nSigOpCostWithAncestors) >= 0); } -CTxMemPool::CTxMemPool(const CFeeRate& _minReasonableRelayFee) : +CTxMemPool::CTxMemPool() : nTransactionsUpdated(0) { _clear(); //lock free clear |