remove default argument from GetMinimumFee

This commit is contained in:
Alex Morcos
2017-06-13 10:41:14 -04:00
parent 5af6572534
commit cfaef69ace
3 changed files with 3 additions and 3 deletions

View File

@@ -510,7 +510,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog)
nBytes -= 34;
// Fee
nPayFee = CWallet::GetMinimumFee(nBytes, coinControl->nConfirmTarget, ::mempool, ::feeEstimator);
nPayFee = CWallet::GetMinimumFee(nBytes, coinControl->nConfirmTarget, ::mempool, ::feeEstimator, nullptr /* FeeCalculation */, false /* ignoreGlobalPayTxFee */);
if (nPayAmount > 0)
{