diff options
| author | Alex Morcos <[email protected]> | 2017-06-13 10:41:14 -0400 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-07-06 22:20:23 -0400 |
| commit | cfaef69ace6c52aeb4ce347597c6dae61bdce744 (patch) | |
| tree | 5acacb04a9644b98183c99fa9548d292fed1112d /src/qt/coincontroldialog.cpp | |
| parent | Merge #10698: Be consistent in calling transactions "replaceable" for Opt-In RBF (diff) | |
| download | discoin-cfaef69ace6c52aeb4ce347597c6dae61bdce744.tar.xz discoin-cfaef69ace6c52aeb4ce347597c6dae61bdce744.zip | |
remove default argument from GetMinimumFee
Diffstat (limited to 'src/qt/coincontroldialog.cpp')
| -rw-r--r-- | src/qt/coincontroldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index af9a888d9..10a8d6b88 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -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) { |