aboutsummaryrefslogtreecommitdiff
path: root/src/bench/mempool_eviction.cpp
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2017-01-13 16:53:21 -0500
committerAlex Morcos <morcos@chaincode.com>2017-01-17 13:21:35 -0500
commitad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3 (patch)
tree2cb9752e8e999ca76984a3f169b5045bdbf31708 /src/bench/mempool_eviction.cpp
parent2a7b56cc0e33d74b548e38aa987e003a9801c8bd (diff)
downloadbitcoin-ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3.tar.xz
Remove unnecessary min fee argument in CTxMemPool constructor
Diffstat (limited to 'src/bench/mempool_eviction.cpp')
-rw-r--r--src/bench/mempool_eviction.cpp2
1 files changed, 1 insertions, 1 deletions
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);