aboutsummaryrefslogtreecommitdiff
path: root/src/qt/paymentserver.cpp
diff options
context:
space:
mode:
authorJulian Haight <github@a.julianhaight.com>2014-07-02 09:42:15 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-07-02 09:47:47 +0200
commitdd49e92fb0cae0dcdf0b2ea303da99c7814db473 (patch)
tree56d545d9fb6380c9748c1329416a7490f776e68e /src/qt/paymentserver.cpp
parentc9600ce640d02614a47ed53df7f975900ee69b22 (diff)
downloadbitcoin-dd49e92fb0cae0dcdf0b2ea303da99c7814db473.tar.xz
qt: fix 'opens in testnet mode when presented with a BIP-72 link with no fallback'
Passes tests: ``` $ ./bitcoin-qt 'bitcoin:?r=http://www.example.com/' .. fixed the original problem - this launches mainnet. $ ./bitcoin-qt 'bitcoin:mngeNQbTKnmaMbx8EXCYdwUbnt9JJD52cC' .. launches testnet $ ./bitcoin-qt -testnet 'bitcoin:1NXXeQRyMFFFRfyUix2o7mk1vhvk2Nxp78' .. sanity check - launches mainnet. ``` Fixes #4355. Closes #4411.
Diffstat (limited to 'src/qt/paymentserver.cpp')
-rw-r--r--src/qt/paymentserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp
index 2049d65073..6ca90f0513 100644
--- a/src/qt/paymentserver.cpp
+++ b/src/qt/paymentserver.cpp
@@ -195,7 +195,7 @@ bool PaymentServer::ipcParseCommandLine(int argc, char* argv[])
savedPaymentRequests.append(arg);
SendCoinsRecipient r;
- if (GUIUtil::parseBitcoinURI(arg, &r))
+ if (GUIUtil::parseBitcoinURI(arg, &r) && !r.address.isEmpty())
{
CBitcoinAddress address(r.address.toStdString());