mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
[Qt][CoinControl] fix UI bug that could result in paying unexpected fee
This commit is contained in:
parent
5b2ea29cf4
commit
04802930d4
@ -589,6 +589,9 @@ void SendCoinsDialog::updateGlobalFeeVariables()
|
||||
{
|
||||
nTxConfirmTarget = defaultConfirmTarget - ui->sliderSmartFee->value();
|
||||
payTxFee = CFeeRate(0);
|
||||
|
||||
// set nMinimumTotalFee to 0 to not accidentally pay a custom fee
|
||||
CoinControlDialog::coinControl->nMinimumTotalFee = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -781,7 +784,7 @@ void SendCoinsDialog::coinControlUpdateLabels()
|
||||
ui->radioCustomAtLeast->setVisible(true);
|
||||
|
||||
// only enable the feature if inputs are selected
|
||||
ui->radioCustomAtLeast->setEnabled(CoinControlDialog::coinControl->HasSelected());
|
||||
ui->radioCustomAtLeast->setEnabled(ui->radioCustomFee->isChecked() && !ui->checkBoxMinimumFee->isChecked() &&CoinControlDialog::coinControl->HasSelected());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user