aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorPatrick Lodder <[email protected]>2021-07-31 20:58:53 +0200
committerGitHub <[email protected]>2021-07-31 20:58:53 +0200
commit7abb81b2ea3bd11e6d01476b2c1739d793006a83 (patch)
tree7765fbeda190b3630de9810f4b246a7c1c0c5e75 /src/qt
parentMerge pull request #2426 from xanimo/1.14.4-qa (diff)
parentInitial back end framework to separate wallet and relay fees + dust. (diff)
downloaddiscoin-7abb81b2ea3bd11e6d01476b2c1739d793006a83.tar.xz
discoin-7abb81b2ea3bd11e6d01476b2c1739d793006a83.zip
Merge pull request #2368 from michilumin/1.14.4-fees
1.14.4 fees backend improvements
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/sendcoinsdialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp
index 0df6c5b20..3d7837caa 100644
--- a/src/qt/sendcoinsdialog.cpp
+++ b/src/qt/sendcoinsdialog.cpp
@@ -18,7 +18,7 @@
#include "base58.h"
#include "chainparams.h"
#include "wallet/coincontrol.h"
-#include "validation.h" // mempool and minRelayTxFee
+#include "validation.h" // mempool and minRelayTxFeeRate
#include "ui_interface.h"
#include "txmempool.h"
#include "wallet/wallet.h"
@@ -591,6 +591,7 @@ void SendCoinsDialog::updateFeeSectionControls()
ui->labelFeeEstimation ->setEnabled(ui->radioSmartFee->isChecked());
ui->labelSmartFeeNormal ->setEnabled(ui->radioSmartFee->isChecked());
ui->labelSmartFeeFast ->setEnabled(ui->radioSmartFee->isChecked());
+ //mlumin: 5/2021 - this label actually gates the 'slider and smart fee' functionality, so turn it off for dogecoin.
ui->confirmationTargetLabel ->setEnabled(ui->radioSmartFee->isChecked());
ui->checkBoxMinimumFee ->setEnabled(ui->radioCustomFee->isChecked());
ui->labelMinFeeWarning ->setEnabled(ui->radioCustomFee->isChecked());