|
|
|
@ -245,6 +245,8 @@ void SendCoinsDialog::on_sendButton_clicked()
@@ -245,6 +245,8 @@ void SendCoinsDialog::on_sendButton_clicked()
|
|
|
|
|
else |
|
|
|
|
ctrl.nConfirmTarget = 0; |
|
|
|
|
|
|
|
|
|
ctrl.signalRbf = ui->optInRBF->isChecked(); |
|
|
|
|
|
|
|
|
|
prepareStatus = model->prepareTransaction(currentTransaction, &ctrl); |
|
|
|
|
|
|
|
|
|
// process prepareStatus and on error generate message shown to user
|
|
|
|
@ -324,6 +326,13 @@ void SendCoinsDialog::on_sendButton_clicked()
@@ -324,6 +326,13 @@ void SendCoinsDialog::on_sendButton_clicked()
|
|
|
|
|
questionString.append(QString("<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span>") |
|
|
|
|
.arg(alternativeUnits.join(" " + tr("or") + "<br />"))); |
|
|
|
|
|
|
|
|
|
if (ui->optInRBF->isChecked()) |
|
|
|
|
{ |
|
|
|
|
questionString.append("<hr /><span>"); |
|
|
|
|
questionString.append(tr("This transaction signals replaceability (optin-RBF).")); |
|
|
|
|
questionString.append("</span>"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
SendConfirmationDialog confirmationDialog(tr("Confirm send coins"), |
|
|
|
|
questionString.arg(formatted.join("<br />")), SEND_CONFIRM_DELAY, this); |
|
|
|
|
confirmationDialog.exec(); |
|
|
|
|