Chainparams: Replace CBaseChainParams::Network enum with string constants (suggested by Wladimir)
This commit is contained in:
@@ -32,13 +32,13 @@ CWallet* pwalletMain;
|
||||
extern bool fPrintToConsole;
|
||||
extern void noui_connect();
|
||||
|
||||
BasicTestingSetup::BasicTestingSetup(CBaseChainParams::Network network)
|
||||
BasicTestingSetup::BasicTestingSetup(const std::string& chainName)
|
||||
{
|
||||
ECC_Start();
|
||||
SetupEnvironment();
|
||||
fPrintToDebugLog = false; // don't want to write to debug.log file
|
||||
fCheckBlockIndex = true;
|
||||
SelectParams(network);
|
||||
SelectParams(chainName);
|
||||
noui_connect();
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ BasicTestingSetup::~BasicTestingSetup()
|
||||
ECC_Stop();
|
||||
}
|
||||
|
||||
TestingSetup::TestingSetup(CBaseChainParams::Network network) : BasicTestingSetup(network)
|
||||
TestingSetup::TestingSetup(const std::string& chainName) : BasicTestingSetup(chainName)
|
||||
{
|
||||
#ifdef ENABLE_WALLET
|
||||
bitdb.MakeMock();
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
* This just configures logging and chain parameters.
|
||||
*/
|
||||
struct BasicTestingSetup {
|
||||
BasicTestingSetup(CBaseChainParams::Network network = CBaseChainParams::MAIN);
|
||||
BasicTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
|
||||
~BasicTestingSetup();
|
||||
};
|
||||
|
||||
@@ -25,7 +25,7 @@ struct TestingSetup: public BasicTestingSetup {
|
||||
boost::filesystem::path pathTemp;
|
||||
boost::thread_group threadGroup;
|
||||
|
||||
TestingSetup(CBaseChainParams::Network network = CBaseChainParams::MAIN);
|
||||
TestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
|
||||
~TestingSetup();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user