mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
0e65473daf
1687cb4
Refactor: One CBaseChainParams should be enough (Jorge Timón)
Pull request description:
There's no need for class hierarchy with CBaseChainParams, it is just a struct with 2 fields.
This starts as a +10-43 diff
Tree-SHA512: 0a7dd64ab785416550b541787c6083540e4962d76b6cffa806bb3593aec2daf1752dfe65ac5cd51b34ad5c31dd8292c422b483fdd2d37d0b7e68725498ed4c2d
Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com>
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
// Copyright (c) 2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <chainparamsbase.h>
|
|
|
|
#include <tinyformat.h>
|
|
#include <util.h>
|
|
#include <utilmemory.h>
|
|
|
|
#include <assert.h>
|
|
|
|
const std::string CBaseChainParams::MAIN = "main";
|
|
const std::string CBaseChainParams::TESTNET = "test";
|
|
const std::string CBaseChainParams::DEVNET = "devnet";
|
|
const std::string CBaseChainParams::REGTEST = "regtest";
|
|
|
|
void AppendParamsHelpMessages(std::string& strUsage, bool debugHelp)
|
|
{
|
|
strUsage += HelpMessageGroup(_("Chain selection options:"));
|
|
strUsage += HelpMessageOpt("-devnet=<name>", _("Use devnet chain with provided name"));
|
|
if (debugHelp) {
|
|
strUsage += HelpMessageOpt("-regtest", "Enter regression test mode, which uses a special chain in which blocks can be solved instantly. "
|
|
"This is intended for regression testing tools and app development.");
|
|
}
|
|
strUsage += HelpMessageOpt("-testnet", _("Use the test chain"));
|
|
}
|
|
|
|
static std::unique_ptr<CBaseChainParams> globalChainBaseParams;
|
|
|
|
const CBaseChainParams& BaseParams()
|
|
{
|
|
assert(globalChainBaseParams);
|
|
return *globalChainBaseParams;
|
|
}
|
|
|
|
std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const std::string& chain)
|
|
{
|
|
if (chain == CBaseChainParams::MAIN)
|
|
return MakeUnique<CBaseChainParams>("", 9998);
|
|
else if (chain == CBaseChainParams::TESTNET)
|
|
return MakeUnique<CBaseChainParams>("testnet3", 19998);
|
|
else if (chain == CBaseChainParams::DEVNET)
|
|
return MakeUnique<CBaseChainParams>(gArgs.GetDevNetName(), 19798);
|
|
else if (chain == CBaseChainParams::REGTEST)
|
|
return MakeUnique<CBaseChainParams>("regtest", 19898);
|
|
else
|
|
throw std::runtime_error(strprintf("%s: Unknown chain %s.", __func__, chain));
|
|
}
|
|
|
|
void SelectBaseParams(const std::string& chain)
|
|
{
|
|
globalChainBaseParams = CreateBaseChainParams(chain);
|
|
gArgs.SelectConfigNetwork(chain);
|
|
}
|