diff options
| author | Gavin Andresen <[email protected]> | 2013-12-04 13:18:09 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-12-04 13:18:09 +1000 |
| commit | 1e01f7c506af60012bb99ced053d98eb529eda61 (patch) | |
| tree | bce24878fbe914590a085d06146bd55d024e5559 /src | |
| parent | Merge pull request #3285 (diff) | |
| download | discoin-1e01f7c506af60012bb99ced053d98eb529eda61.tar.xz discoin-1e01f7c506af60012bb99ced053d98eb529eda61.zip | |
Payment request URI syntax changed, from request=... to r=...
BIP 72 was changed to save six bytes in bitcoin: URIs.
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/openuridialog.cpp | 2 | ||||
| -rw-r--r-- | src/qt/paymentserver.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/openuridialog.cpp b/src/qt/openuridialog.cpp index 803a3c9dd..06189aeaf 100644 --- a/src/qt/openuridialog.cpp +++ b/src/qt/openuridialog.cpp @@ -48,5 +48,5 @@ void OpenURIDialog::on_selectFileButton_clicked() if(filename.isEmpty()) return; QUrl fileUri = QUrl::fromLocalFile(filename); - ui->uriEdit->setText("bitcoin:?request=" + QUrl::toPercentEncoding(fileUri.toString())); + ui->uriEdit->setText("bitcoin:?r=" + QUrl::toPercentEncoding(fileUri.toString())); } diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 34da0f90e..d66a72207 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -366,10 +366,10 @@ void PaymentServer::handleURIOrFile(const QString& s) #else QUrlQuery uri((QUrl(s))); #endif - if (uri.hasQueryItem("request")) + if (uri.hasQueryItem("r")) { QByteArray temp; - temp.append(uri.queryItemValue("request")); + temp.append(uri.queryItemValue("r")); QString decoded = QUrl::fromPercentEncoding(temp); QUrl fetchUrl(decoded, QUrl::StrictMode); |