Merge pull request #5203

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
1 changed files with 0 additions and 1 deletions

View File

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