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

@ -83,7 +83,7 @@ uint256 hashAssumeValid;
CFeeRate minRelayTxFee = CFeeRate(DEFAULT_MIN_RELAY_TX_FEE);
CAmount maxTxFee = DEFAULT_TRANSACTION_MAXFEE;
CTxMemPool mempool(::minRelayTxFee);
CTxMemPool mempool;
static void CheckBlockIndex(const Consensus::Params& consensusParams);