Merge pull request #4275

509f926 Payment request parsing on startup now only changes network if a valid network name is specified. (Ross Nicoll)
This commit is contained in:
Wladimir J. van der Laan 2014-07-09 08:47:09 +02:00
commit 2ee918d121
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 5 additions and 1 deletions

View File

@ -214,9 +214,13 @@ bool PaymentServer::ipcParseCommandLine(int argc, char* argv[])
if (readPaymentRequest(arg, request))
{
if (request.getDetails().network() == "main")
{
SelectParams(CBaseChainParams::MAIN);
else
}
else if (request.getDetails().network() == "test")
{
SelectParams(CBaseChainParams::TESTNET);
}
}
}
else