Merge pull request

0d91ae3 The first thing that SelectParams does is call SelectBaseParams. Therefore, we do not need to call SelectBaseParams immediately prior to calling SelectParams. (mruddy)
This commit is contained in:
Wladimir J. van der Laan 2014-11-13 13:12:36 +01:00
commit ed98a6284b
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -369,7 +369,6 @@ bool SelectParamsFromCommandLine()
if (network == CBaseChainParams::MAX_NETWORK_TYPES)
return false;
SelectBaseParams(network);
SelectParams(network);
return true;
}