Remove unnecessary min fee argument in CTxMemPool constructor

This commit is contained in:
Alex Morcos
2017-01-13 16:53:21 -05:00
parent 2a7b56cc0e
commit ad82cb06ce
7 changed files with 13 additions and 13 deletions

View File

@@ -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);