Skip to content

Commit db0b737

Browse files
committed
[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.
1 parent 9388639 commit db0b737

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/qt/forms/sendcoinsdialog.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,10 +1108,10 @@
11081108
<item>
11091109
<widget class="QCheckBox" name="optInRBF">
11101110
<property name="text">
1111-
<string>Request Replace-By-Fee</string>
1111+
<string>Allow increasing fee</string>
11121112
</property>
11131113
<property name="toolTip">
1114-
<string>Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed).</string>
1114+
<string>This allows you to increase the fee later if the transaction takes a long time to confirm. This will also cause the recommended fee to be lower. ("Replace-By-Fee", BIP 125)</string>
11151115
</property>
11161116
</widget>
11171117
</item>

src/qt/sendcoinsdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ void SendCoinsDialog::on_sendButton_clicked()
345345
if (ui->optInRBF->isChecked())
346346
{
347347
questionString.append("<hr /><span>");
348-
questionString.append(tr("This transaction signals replaceability (optin-RBF)."));
348+
questionString.append(tr("You can increase the fee later (signals Replace-By-Fee)."));
349349
questionString.append("</span>");
350350
}
351351

0 commit comments

Comments
 (0)