Revert "Hardcode testnet for first alpha release."

This reverts commit b16685ca0d.
This commit is contained in:
langerhans 2014-04-09 21:19:48 +02:00
parent 4717f6c1b6
commit f131c1e486

View file

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