349 | @@ -360,15 +350,6 @@ bool SendCoinsDialog::PrepareSendText(QString& question_string, QString& informa
350 | question_string.append("<span style='color:#aa0000; font-weight:bold;'>");
351 | question_string.append(BitcoinUnits::formatHtmlWithUnit(model->getOptionsModel()->getDisplayUnit(), txFee));
352 | question_string.append("</span><br />");
353 | -
354 | - // append RBF message according to transaction's signalling
355 | - question_string.append("<span style='font-size:10pt; font-weight:normal;'>");
356 | - if (ui->optInRBF->isChecked()) {
357 | - question_string.append(tr("You can increase the fee later (signals Replace-By-Fee, BIP-125)."));
Might be good to keep the "You can increase the fee later" string?
Yes, makes sens, added back.