diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2017-11-18 13:12:07 +0100 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2017-11-18 13:12:07 +0100 |
commit | db0b7373fc990806a06b6ba8a27ba2d710ce23c8 (patch) | |
tree | 8c78b98f0d0f3bfef8d1bf114247c11e9acb4532 /src/qt/sendcoinsdialog.cpp | |
parent | 938863965f14ce7ab0780dd9197c6e13f2093d87 (diff) |
[Qt] Improved copy: RBF checkbox, tooltip and confirmation screen
Opt-in RBF checkbox uses less technical jargon and emphasises
the fee bump functionality (at the expense of not mentioning
other uses of RBF).
The transaction confirmation screen uses copy consistent with this.
Diffstat (limited to 'src/qt/sendcoinsdialog.cpp')
-rw-r--r-- | src/qt/sendcoinsdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 036b6ebcc0..e2b9177885 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -345,7 +345,7 @@ void SendCoinsDialog::on_sendButton_clicked() if (ui->optInRBF->isChecked()) { questionString.append("<hr /><span>"); - questionString.append(tr("This transaction signals replaceability (optin-RBF).")); + questionString.append(tr("You can increase the fee later (signals Replace-By-Fee).")); questionString.append("</span>"); } |