Hardcode testnet for first alpha release.

This commit is contained in:
langerhans 2014-04-03 20:05:20 +02:00
parent 64c239d057
commit b16685ca0d

View file

@ -275,7 +275,7 @@ void SelectParams(CChainParams::Network network) {
bool SelectParamsFromCommandLine() {
bool fRegTest = GetBoolArg("-regtest", false);
bool fTestNet = GetBoolArg("-testnet", false);
bool fTestNet = true; // GetBoolArg("-testnet", false);
if (fTestNet && fRegTest) {
return false;