diff options
| author | Alex Morcos <[email protected]> | 2017-06-13 14:02:55 -0400 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-07-06 22:20:23 -0400 |
| commit | f0bf33da8357bd6aff100bbe5b84a7f01937e379 (patch) | |
| tree | 7fe52cd82773d8bd31f35fc74489d1527784c53b /src/qt/coincontroldialog.cpp | |
| parent | remove default argument from estimateSmartFee (diff) | |
| download | discoin-f0bf33da8357bd6aff100bbe5b84a7f01937e379.tar.xz discoin-f0bf33da8357bd6aff100bbe5b84a7f01937e379.zip | |
Change default fee estimation mode.
Fee estimates will default to be non-conservative if the transaction in question is opt-in-RBF.
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 477cee1c0..c19420beb 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -490,7 +490,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) else nBytesInputs += 148; } - bool conservative_estimate = CalculateEstimateType(FeeEstimateMode::UNSET); + bool conservative_estimate = CalculateEstimateType(FeeEstimateMode::UNSET, coinControl->signalRbf); // calculation if (nQuantity > 0) |