diff options
| author | Dennis Field <[email protected]> | 2020-02-27 03:06:36 -0500 |
|---|---|---|
| committer | Dennis Field <[email protected]> | 2020-02-27 03:06:36 -0500 |
| commit | f9ed102553b397e8fd22b889f28dad8f266f4498 (patch) | |
| tree | 22e74e015548a9677d85f857cff042b37344c90f /src | |
| parent | Set next release version to 1.14.2 (diff) | |
| download | discoin-f9ed102553b397e8fd22b889f28dad8f266f4498.tar.xz discoin-f9ed102553b397e8fd22b889f28dad8f266f4498.zip | |
Change IPC prefix from bitcoin: to dogecoin:
Given that GUIUtil::parseBitcoinURI is expecting it to start with dogecoin,
it seems like this was overlooked, and this results in dogecoin: links not
being processed as expected in handleURIOrFile, ipcParseCommandLine.
Instead of processing the link as a payment request and opening the such send
page, it simply opens the core wallet (or attempts to open another).
This commit makes dogecoin-qt properly handle dogecoin links so that the such
send page is opened with the desired information obtained from the link.
Fixes #1628
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/paymentserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 88aaec8d3..edcb9fdcd 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -47,7 +47,7 @@ #endif const int BITCOIN_IPC_CONNECT_TIMEOUT = 1000; // milliseconds -const QString BITCOIN_IPC_PREFIX("bitcoin:"); +const QString BITCOIN_IPC_PREFIX("dogecoin:"); // BIP70 payment protocol messages const char* BIP70_MESSAGE_PAYMENTACK = "PaymentACK"; const char* BIP70_MESSAGE_PAYMENTREQUEST = "PaymentRequest"; |