From ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3 Mon Sep 17 00:00:00 2001 From: Alex Morcos Date: Fri, 13 Jan 2017 16:53:21 -0500 Subject: Remove unnecessary min fee argument in CTxMemPool constructor --- src/bench/mempool_eviction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bench') diff --git a/src/bench/mempool_eviction.cpp b/src/bench/mempool_eviction.cpp index 5790d51a82..1b2d23862d 100644 --- a/src/bench/mempool_eviction.cpp +++ b/src/bench/mempool_eviction.cpp @@ -97,7 +97,7 @@ static void MempoolEviction(benchmark::State& state) tx7.vout[1].scriptPubKey = CScript() << OP_7 << OP_EQUAL; tx7.vout[1].nValue = 10 * COIN; - CTxMemPool pool(CFeeRate(1000)); + CTxMemPool pool; while (state.KeepRunning()) { AddTx(tx1, 10000LL, pool); -- cgit v1.2.3