2014-06-19 15:10:04 +02:00
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
2015-12-13 17:58:29 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-10-25 11:24:16 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-06-19 15:10:04 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <chainparamsbase.h>
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <tinyformat.h>
|
|
|
|
#include <util.h>
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2014-08-28 22:56:53 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
const std::string CBaseChainParams::MAIN = "main";
|
|
|
|
const std::string CBaseChainParams::TESTNET = "test";
|
|
|
|
const std::string CBaseChainParams::REGTEST = "regtest";
|
2015-05-25 09:00:17 +02:00
|
|
|
|
|
|
|
void AppendParamsHelpMessages(std::string& strUsage, bool debugHelp)
|
|
|
|
{
|
|
|
|
strUsage += HelpMessageGroup(_("Chain selection options:"));
|
|
|
|
strUsage += HelpMessageOpt("-testnet", _("Use the test chain"));
|
|
|
|
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.");
|
|
|
|
}
|
|
|
|
}
|
2015-06-30 21:39:49 +02:00
|
|
|
|
2014-10-25 11:24:16 +02:00
|
|
|
/**
|
|
|
|
* Main network
|
|
|
|
*/
|
2014-09-19 19:21:46 +02:00
|
|
|
class CBaseMainParams : public CBaseChainParams
|
|
|
|
{
|
2014-06-19 15:10:04 +02:00
|
|
|
public:
|
2014-09-19 19:21:46 +02:00
|
|
|
CBaseMainParams()
|
|
|
|
{
|
2014-06-19 15:10:04 +02:00
|
|
|
nRPCPort = 8332;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-10-25 11:24:16 +02:00
|
|
|
/**
|
|
|
|
* Testnet (v3)
|
|
|
|
*/
|
2015-07-03 14:30:18 +02:00
|
|
|
class CBaseTestNetParams : public CBaseChainParams
|
2014-09-19 19:21:46 +02:00
|
|
|
{
|
2014-06-19 15:10:04 +02:00
|
|
|
public:
|
2014-09-19 19:21:46 +02:00
|
|
|
CBaseTestNetParams()
|
|
|
|
{
|
2014-06-19 15:10:04 +02:00
|
|
|
nRPCPort = 18332;
|
|
|
|
strDataDir = "testnet3";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-10-25 11:24:16 +02:00
|
|
|
/*
|
|
|
|
* Regression test
|
|
|
|
*/
|
2015-07-03 14:30:18 +02:00
|
|
|
class CBaseRegTestParams : public CBaseChainParams
|
2014-09-19 19:21:46 +02:00
|
|
|
{
|
2014-06-19 15:10:04 +02:00
|
|
|
public:
|
2014-09-19 19:21:46 +02:00
|
|
|
CBaseRegTestParams()
|
|
|
|
{
|
2017-07-14 16:47:10 +02:00
|
|
|
nRPCPort = 18443;
|
2014-06-19 15:10:04 +02:00
|
|
|
strDataDir = "regtest";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-22 03:50:01 +02:00
|
|
|
static std::unique_ptr<CBaseChainParams> globalChainBaseParams;
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
const CBaseChainParams& BaseParams()
|
|
|
|
{
|
2015-05-22 03:50:01 +02:00
|
|
|
assert(globalChainBaseParams);
|
|
|
|
return *globalChainBaseParams;
|
2014-06-19 15:10:04 +02:00
|
|
|
}
|
|
|
|
|
2015-05-22 03:50:01 +02:00
|
|
|
std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const std::string& chain)
|
2014-09-19 19:21:46 +02:00
|
|
|
{
|
2015-06-30 21:39:49 +02:00
|
|
|
if (chain == CBaseChainParams::MAIN)
|
2015-05-22 03:50:01 +02:00
|
|
|
return std::unique_ptr<CBaseChainParams>(new CBaseMainParams());
|
2015-06-30 21:39:49 +02:00
|
|
|
else if (chain == CBaseChainParams::TESTNET)
|
2015-05-22 03:50:01 +02:00
|
|
|
return std::unique_ptr<CBaseChainParams>(new CBaseTestNetParams());
|
2015-06-30 21:39:49 +02:00
|
|
|
else if (chain == CBaseChainParams::REGTEST)
|
2015-05-22 03:50:01 +02:00
|
|
|
return std::unique_ptr<CBaseChainParams>(new CBaseRegTestParams());
|
2015-06-30 21:39:49 +02:00
|
|
|
else
|
|
|
|
throw std::runtime_error(strprintf("%s: Unknown chain %s.", __func__, chain));
|
2014-06-19 15:10:04 +02:00
|
|
|
}
|
|
|
|
|
2015-06-27 21:21:41 +02:00
|
|
|
void SelectBaseParams(const std::string& chain)
|
|
|
|
{
|
2015-05-22 03:50:01 +02:00
|
|
|
globalChainBaseParams = CreateBaseChainParams(chain);
|
2015-06-27 21:21:41 +02:00
|
|
|
}
|
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
std::string ChainNameFromCommandLine()
|
2014-09-19 19:21:46 +02:00
|
|
|
{
|
2017-08-01 21:17:40 +02:00
|
|
|
bool fRegTest = gArgs.GetBoolArg("-regtest", false);
|
|
|
|
bool fTestNet = gArgs.GetBoolArg("-testnet", false);
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2014-09-01 00:41:28 +02:00
|
|
|
if (fTestNet && fRegTest)
|
2015-05-25 09:00:17 +02:00
|
|
|
throw std::runtime_error("Invalid combination of -regtest and -testnet.");
|
2014-09-01 00:41:28 +02:00
|
|
|
if (fRegTest)
|
2014-10-09 19:15:38 +02:00
|
|
|
return CBaseChainParams::REGTEST;
|
2014-09-01 00:41:28 +02:00
|
|
|
if (fTestNet)
|
2014-10-09 19:15:38 +02:00
|
|
|
return CBaseChainParams::TESTNET;
|
|
|
|
return CBaseChainParams::MAIN;
|
2014-09-01 00:41:28 +02:00
|
|
|
}
|