Change default chain to liquidv1

This commit is contained in:
Gregory Sanders 2019-07-10 13:41:36 -04:00
parent b9727ae60c
commit 648245505d
2 changed files with 2 additions and 8 deletions

View file

@ -1001,10 +1001,7 @@ std::string ArgsManager::GetChainName() const
if (fTestNet)
return CBaseChainParams::TESTNET;
std::string default_chain = "elementsregtest";
#ifdef LIQUID
default_chain = "liquidv1";
#endif
std::string default_chain = "liquidv1";
return GetArg("-chain", default_chain);
}