Skip to content

Commit 9e68a82

Browse files
committed
Merge #752: Modify command line help to show support for BIP21 URIs
ede5014 Modify command line help to show support for BIP21 URIs (Hernan Marino) Pull request description: While reviewing a different PR (see #742 ) **hebasto** suggested that the help for bitcoin-qt should be updated to reflect the fact that bitcoin-qt supports an optional BIP21 URI parameter. Since this reflects actual behaviour of bitcoin-qt and is independent of whether or not the other PR gets merged, I created this simple PR to fix the help message. ACKs for top commit: kristapsk: utACK ede5014 pablomartin4btc: lgtm, re ACK ede5014 hebasto: ACK ede5014. Tree-SHA512: c456297c486bc5cc65e0e092e7ba9d51b0bd7a584d4fabca7f7ca1f8e58cbcc66e96226539c689ed0f5e7f40da220bbc4ea30b90e31e1aeeb8867a385a90209c
2 parents 7143d43 + ede5014 commit 9e68a82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/qt/utilitydialog.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
5858
ui->helpMessage->setVisible(false);
5959
} else {
6060
setWindowTitle(tr("Command-line options"));
61-
QString header = "Usage: bitcoin-qt [command-line options] \n";
61+
QString header = "Usage: bitcoin-qt [command-line options] [URI]\n\n"
62+
"Optional URI is a Bitcoin address in BIP21 URI format.\n";
6263
QTextCursor cursor(ui->helpMessage->document());
6364
cursor.insertText(version);
6465
cursor.insertBlock();

0 commit comments

Comments
 (0)