Browse Source

Merge pull request #3823

89ec3a2 MainNet is the special case for the GUI (jtimon)
0.10
Wladimir J. van der Laan 11 years ago
parent
commit
fb4f40a0dc
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 4
      src/qt/bitcoin.cpp

4
src/qt/bitcoin.cpp

@ -448,12 +448,12 @@ int main(int argc, char *argv[])
fSelParFromCLFailed = true; fSelParFromCLFailed = true;
} }
#ifdef ENABLE_WALLET #ifdef ENABLE_WALLET
// Parse URIs on command line -- this can affect TestNet() / RegTest() mode // Parse URIs on command line -- this can affect Params()
if (!PaymentServer::ipcParseCommandLine(argc, argv)) if (!PaymentServer::ipcParseCommandLine(argc, argv))
exit(0); exit(0);
#endif #endif
bool isaTestNet = TestNet() || RegTest(); bool isaTestNet = Params().NetworkID() != CChainParams::MAIN;
// Do not refer to data directory yet, this can be overridden by Intro::pickDataDirectory // Do not refer to data directory yet, this can be overridden by Intro::pickDataDirectory

Loading…
Cancel
Save