2013-05-07 15:16:25 +02:00
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
2014-02-08 16:50:24 -05:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
2014-10-25 17:24:16 +08:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-05-07 15:16:25 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
#include "chainparams.h"
|
2013-04-13 00:13:08 -05:00
|
|
|
|
2014-12-06 14:42:17 -08:00
|
|
|
#include "hash.h"
|
2014-06-26 14:41:53 +02:00
|
|
|
#include "random.h"
|
2013-05-07 15:16:25 +02:00
|
|
|
#include "util.h"
|
2014-09-24 23:32:36 -04:00
|
|
|
#include "utilstrencodings.h"
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-08-28 22:56:53 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
2013-06-23 02:33:47 +02:00
|
|
|
#include <boost/assign/list_of.hpp>
|
|
|
|
|
|
2014-06-16 16:30:38 +02:00
|
|
|
using namespace std;
|
2013-06-23 02:33:47 +02:00
|
|
|
using namespace boost::assign;
|
|
|
|
|
|
2014-07-24 13:52:57 +02:00
|
|
|
struct SeedSpec6 {
|
|
|
|
|
uint8_t addr[16];
|
|
|
|
|
uint16_t port;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#include "chainparamsseeds.h"
|
|
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
/**
|
|
|
|
|
* Main network
|
|
|
|
|
*/
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
//! Convert the pnSeeds6 array into usable address objects.
|
2014-07-24 13:52:57 +02:00
|
|
|
static void convertSeed6(std::vector<CAddress> &vSeedsOut, const SeedSpec6 *data, unsigned int count)
|
2013-05-07 15:16:25 +02:00
|
|
|
{
|
2014-07-24 13:52:57 +02:00
|
|
|
// It'll only connect to one or two seed nodes because once it connects,
|
|
|
|
|
// it'll get a pile of addresses with newer timestamps.
|
|
|
|
|
// Seed nodes are given a random 'last seen time' of between one and two
|
|
|
|
|
// weeks ago.
|
|
|
|
|
const int64_t nOneWeek = 7*24*60*60;
|
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
struct in6_addr ip;
|
|
|
|
|
memcpy(&ip, data[i].addr, sizeof(ip));
|
|
|
|
|
CAddress addr(CService(ip, data[i].port));
|
|
|
|
|
addr.nTime = GetTime() - GetRand(nOneWeek) - nOneWeek;
|
|
|
|
|
vSeedsOut.push_back(addr);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
/**
|
|
|
|
|
* What makes a good checkpoint block?
|
|
|
|
|
* + Is surrounded by blocks with reasonable timestamps
|
|
|
|
|
* (no blocks before with a timestamp after, none after with
|
|
|
|
|
* timestamp before)
|
|
|
|
|
* + Contains no strange transactions
|
|
|
|
|
*/
|
2015-03-25 14:18:38 -07:00
|
|
|
static Checkpoints::MapCheckpoints mapCheckpoints;
|
2014-08-31 21:32:23 +02:00
|
|
|
static const Checkpoints::CCheckpointData data = {
|
|
|
|
|
&mapCheckpoints,
|
2015-03-25 14:18:38 -07:00
|
|
|
0, // * UNIX timestamp of last checkpoint block
|
|
|
|
|
0, // * total number of transactions between genesis and last checkpoint
|
2014-08-31 21:32:23 +02:00
|
|
|
// (the tx=... number in the SetBestChain debug.log lines)
|
2015-03-25 14:18:38 -07:00
|
|
|
0 // * estimated number of transactions per day after checkpoint
|
2014-08-31 21:32:23 +02:00
|
|
|
};
|
|
|
|
|
|
2015-03-25 14:18:38 -07:00
|
|
|
static Checkpoints::MapCheckpoints mapCheckpointsTestnet;
|
2014-08-31 21:32:23 +02:00
|
|
|
static const Checkpoints::CCheckpointData dataTestnet = {
|
|
|
|
|
&mapCheckpointsTestnet,
|
2015-03-25 14:18:38 -07:00
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0
|
2014-08-31 21:32:23 +02:00
|
|
|
};
|
|
|
|
|
|
2015-03-25 14:18:38 -07:00
|
|
|
static Checkpoints::MapCheckpoints mapCheckpointsRegtest;
|
2014-08-31 21:32:23 +02:00
|
|
|
static const Checkpoints::CCheckpointData dataRegtest = {
|
|
|
|
|
&mapCheckpointsRegtest,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
class CMainParams : public CChainParams {
|
|
|
|
|
public:
|
2015-09-30 12:55:34 -05:00
|
|
|
CMainParams(CScript scriptDestination) {
|
2014-06-19 15:10:04 +02:00
|
|
|
networkID = CBaseChainParams::MAIN;
|
2014-06-11 12:23:49 +02:00
|
|
|
strNetworkID = "main";
|
2014-10-25 17:24:16 +08:00
|
|
|
/**
|
|
|
|
|
* The message start string is designed to be unlikely to occur in normal data.
|
|
|
|
|
* The characters are rarely used upper ASCII, not valid as UTF-8, and produce
|
|
|
|
|
* a large 4-byte int at any alignment.
|
|
|
|
|
*/
|
2013-05-07 15:16:25 +02:00
|
|
|
pchMessageStart[0] = 0xf9;
|
|
|
|
|
pchMessageStart[1] = 0xbe;
|
|
|
|
|
pchMessageStart[2] = 0xb4;
|
|
|
|
|
pchMessageStart[3] = 0xd9;
|
2015-06-06 17:49:37 -07:00
|
|
|
scriptAlert = CScript() << CScript::EncodeOP_N(2) << ParseHex("0322f29893482dad4de143544fa623b6f68406c61d24d021652f627a6eecb0bd93") << ParseHex("0230ec0caeb5ff100bd4be3d8dbeb00bcbbf1ad98d87fbbaff533d20754ac10025") << ParseHex("03ec379a7e837ad1310ac9b35dca14e44eaaf4ce0289d12ccf6f61785fc377f528") << CScript::EncodeOP_N(3) << OP_CHECKMULTISIG;
|
2013-05-07 15:16:25 +02:00
|
|
|
nDefaultPort = 8333;
|
2014-04-20 03:19:20 +02:00
|
|
|
bnProofOfWorkLimit = ~uint256(0) >> 32;
|
2013-05-07 15:16:25 +02:00
|
|
|
nSubsidyHalvingInterval = 210000;
|
2014-03-22 19:52:26 +01:00
|
|
|
nEnforceBlockUpgradeMajority = 750;
|
|
|
|
|
nRejectBlockOutdatedMajority = 950;
|
|
|
|
|
nToCheckBlockUpgradeMajority = 1000;
|
2014-03-07 22:47:56 -08:00
|
|
|
nMinerThreads = 0;
|
2014-03-22 18:29:34 +01:00
|
|
|
nTargetTimespan = 14 * 24 * 60 * 60; // two weeks
|
|
|
|
|
nTargetSpacing = 10 * 60;
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
/**
|
2014-10-08 00:37:43 -07:00
|
|
|
* Build the genesis block.
|
2014-10-25 17:24:16 +08:00
|
|
|
*
|
|
|
|
|
* CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
|
|
|
|
|
* CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
|
|
|
|
|
* CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
|
|
|
|
|
* CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
|
|
|
|
|
* vMerkleTree: 4a5e1e
|
|
|
|
|
*/
|
2013-05-07 15:16:25 +02:00
|
|
|
const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
|
2014-06-07 13:53:27 +02:00
|
|
|
CMutableTransaction txNew;
|
2015-06-02 16:25:34 -07:00
|
|
|
txNew.nVersion = 1;
|
2013-05-07 15:16:25 +02:00
|
|
|
txNew.vin.resize(1);
|
|
|
|
|
txNew.vout.resize(1);
|
2014-03-26 15:56:45 -04:00
|
|
|
txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
|
2014-12-06 14:42:17 -08:00
|
|
|
txNew.vout[0].nValue = MAX_MONEY;
|
|
|
|
|
uint256 bitcoinGenesisHash = uint256("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f");
|
|
|
|
|
uint160 bitcoinSecondSPKHash = Hash160(CScript() << OP_DROP << CScriptNum(144) << OP_LESSTHANOREQUAL);
|
|
|
|
|
txNew.vout[0].scriptPubKey = CScript() << std::vector<unsigned char>(bitcoinGenesisHash.begin(), bitcoinGenesisHash.end()) << std::vector<unsigned char>(bitcoinSecondSPKHash.begin(), bitcoinSecondSPKHash.end()) << OP_WITHDRAWPROOFVERIFY;
|
2013-05-07 15:16:25 +02:00
|
|
|
genesis.vtx.push_back(txNew);
|
|
|
|
|
genesis.hashPrevBlock = 0;
|
|
|
|
|
genesis.hashMerkleRoot = genesis.BuildMerkleTree();
|
|
|
|
|
genesis.nVersion = 1;
|
|
|
|
|
genesis.nTime = 1231006505;
|
2015-09-30 12:55:34 -05:00
|
|
|
if (scriptDestination.empty()) {
|
|
|
|
|
scriptDestination = CScript() << OP_5 << ParseHex("027d5d62861df77fc9a37dbe901a579d686d1423be5f56d6fc50bb9de3480871d1") << ParseHex("03b41ea6ba73b94c901fdd43e782aaf70016cc124b72a086e77f6e9f4f942ca9bb") << ParseHex("02be643c3350bade7c96f6f28d1750af2ef507bc1f08dd38f82749214ab90d9037") << ParseHex("021df31471281d4478df85bfce08a10aab82601dca949a79950f8ddf7002bd915a") << ParseHex("0320ea4fcf77b63e89094e681a5bd50355900bf961c10c9c82876cb3238979c0ed") << ParseHex("021c4c92c8380659eb567b497b936b274424662909e1ffebc603672ed8433f4aa1") << ParseHex("027841250cfadc06c603da8bc58f6cd91e62f369826c8718eb6bd114601dd0c5ac") << OP_7 << OP_CHECKMULTISIG;
|
|
|
|
|
}
|
2015-06-06 17:49:37 -07:00
|
|
|
genesis.proof = CProof(scriptDestination, CScript()); // genesis block gets a PoW pass
|
2013-05-07 15:16:25 +02:00
|
|
|
|
|
|
|
|
hashGenesisBlock = genesis.GetHash();
|
2015-03-25 14:18:38 -07:00
|
|
|
mapCheckpoints[0] = hashGenesisBlock;
|
2013-05-07 15:16:25 +02:00
|
|
|
|
|
|
|
|
vSeeds.push_back(CDNSSeedData("bitcoin.sipa.be", "seed.bitcoin.sipa.be"));
|
|
|
|
|
vSeeds.push_back(CDNSSeedData("bluematt.me", "dnsseed.bluematt.me"));
|
|
|
|
|
vSeeds.push_back(CDNSSeedData("dashjr.org", "dnsseed.bitcoin.dashjr.org"));
|
2014-01-01 19:53:04 +01:00
|
|
|
vSeeds.push_back(CDNSSeedData("bitcoinstats.com", "seed.bitcoinstats.com"));
|
2013-05-07 15:16:25 +02:00
|
|
|
vSeeds.push_back(CDNSSeedData("xf2.org", "bitseed.xf2.org"));
|
|
|
|
|
|
2013-06-23 02:33:47 +02:00
|
|
|
base58Prefixes[PUBKEY_ADDRESS] = list_of(0);
|
|
|
|
|
base58Prefixes[SCRIPT_ADDRESS] = list_of(5);
|
2015-06-08 19:28:47 -07:00
|
|
|
base58Prefixes[BLINDED_ADDRESS]= list_of(10);
|
2013-06-23 02:33:47 +02:00
|
|
|
base58Prefixes[SECRET_KEY] = list_of(128);
|
2013-07-15 01:05:25 +02:00
|
|
|
base58Prefixes[EXT_PUBLIC_KEY] = list_of(0x04)(0x88)(0xB2)(0x1E);
|
|
|
|
|
base58Prefixes[EXT_SECRET_KEY] = list_of(0x04)(0x88)(0xAD)(0xE4);
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-07-24 13:52:57 +02:00
|
|
|
convertSeed6(vFixedSeeds, pnSeed6_main, ARRAYLEN(pnSeed6_main));
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-06-04 12:51:29 +02:00
|
|
|
fRequireRPCPassword = true;
|
|
|
|
|
fMiningRequiresPeers = true;
|
|
|
|
|
fAllowMinDifficultyBlocks = false;
|
2015-03-13 09:25:34 -07:00
|
|
|
fDefaultConsistencyChecks = false;
|
2014-06-04 12:51:29 +02:00
|
|
|
fRequireStandard = true;
|
|
|
|
|
fMineBlocksOnDemand = false;
|
2014-09-29 13:13:47 +02:00
|
|
|
fSkipProofOfWorkCheck = false;
|
2014-08-31 22:32:52 +02:00
|
|
|
fTestnetToBeDeprecatedFieldRPC = false;
|
2013-05-07 15:16:25 +02:00
|
|
|
}
|
2014-08-31 21:32:23 +02:00
|
|
|
|
|
|
|
|
const Checkpoints::CCheckpointData& Checkpoints() const
|
|
|
|
|
{
|
|
|
|
|
return data;
|
|
|
|
|
}
|
2013-05-07 15:16:25 +02:00
|
|
|
};
|
|
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
/**
|
|
|
|
|
* Testnet (v3)
|
|
|
|
|
*/
|
2013-05-07 15:16:25 +02:00
|
|
|
class CTestNetParams : public CMainParams {
|
|
|
|
|
public:
|
2015-09-30 12:55:34 -05:00
|
|
|
CTestNetParams(CScript scriptDestination) : CMainParams(scriptDestination) {
|
2014-06-19 15:10:04 +02:00
|
|
|
networkID = CBaseChainParams::TESTNET;
|
2014-06-11 12:23:49 +02:00
|
|
|
strNetworkID = "test";
|
2015-06-06 17:49:37 -07:00
|
|
|
pchMessageStart[0] = 0xee;
|
|
|
|
|
pchMessageStart[1] = 0xa1;
|
|
|
|
|
pchMessageStart[2] = 0x1f;
|
|
|
|
|
pchMessageStart[3] = 0xfa;
|
|
|
|
|
nDefaultPort = 4242;
|
2014-03-22 19:52:26 +01:00
|
|
|
nEnforceBlockUpgradeMajority = 51;
|
|
|
|
|
nRejectBlockOutdatedMajority = 75;
|
|
|
|
|
nToCheckBlockUpgradeMajority = 100;
|
2014-03-22 18:29:34 +01:00
|
|
|
nMinerThreads = 0;
|
2014-10-25 17:24:16 +08:00
|
|
|
nTargetTimespan = 14 * 24 * 60 * 60; //! two weeks
|
2014-03-22 18:29:34 +01:00
|
|
|
nTargetSpacing = 10 * 60;
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
//! Modify the testnet genesis block so the timestamp is valid for a later start.
|
2013-05-07 15:16:25 +02:00
|
|
|
genesis.nTime = 1296688602;
|
2015-03-25 14:18:38 -07:00
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
hashGenesisBlock = genesis.GetHash();
|
2015-03-25 14:18:38 -07:00
|
|
|
mapCheckpointsTestnet[0] = hashGenesisBlock;
|
2013-05-07 15:16:25 +02:00
|
|
|
|
|
|
|
|
vFixedSeeds.clear();
|
|
|
|
|
vSeeds.clear();
|
2015-06-06 17:49:37 -07:00
|
|
|
vSeeds.push_back(CDNSSeedData("bluematt.me", "alpha-seed.bluematt.me"));
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2013-06-23 02:33:47 +02:00
|
|
|
base58Prefixes[PUBKEY_ADDRESS] = list_of(111);
|
|
|
|
|
base58Prefixes[SCRIPT_ADDRESS] = list_of(196);
|
2015-06-08 19:28:47 -07:00
|
|
|
base58Prefixes[BLINDED_ADDRESS]= list_of(25);
|
2013-06-23 02:33:47 +02:00
|
|
|
base58Prefixes[SECRET_KEY] = list_of(239);
|
2013-07-15 01:05:25 +02:00
|
|
|
base58Prefixes[EXT_PUBLIC_KEY] = list_of(0x04)(0x35)(0x87)(0xCF);
|
|
|
|
|
base58Prefixes[EXT_SECRET_KEY] = list_of(0x04)(0x35)(0x83)(0x94);
|
2014-03-22 20:09:12 +01:00
|
|
|
|
2014-07-24 13:52:57 +02:00
|
|
|
convertSeed6(vFixedSeeds, pnSeed6_test, ARRAYLEN(pnSeed6_test));
|
|
|
|
|
|
2014-06-04 12:51:29 +02:00
|
|
|
fRequireRPCPassword = true;
|
|
|
|
|
fMiningRequiresPeers = true;
|
|
|
|
|
fAllowMinDifficultyBlocks = true;
|
2015-03-13 09:25:34 -07:00
|
|
|
fDefaultConsistencyChecks = false;
|
2015-06-08 13:32:20 +02:00
|
|
|
fRequireStandard = true;
|
2014-06-04 12:51:29 +02:00
|
|
|
fMineBlocksOnDemand = false;
|
2014-08-31 22:32:52 +02:00
|
|
|
fTestnetToBeDeprecatedFieldRPC = true;
|
2014-06-04 12:51:29 +02:00
|
|
|
}
|
2014-08-31 21:32:23 +02:00
|
|
|
const Checkpoints::CCheckpointData& Checkpoints() const
|
|
|
|
|
{
|
|
|
|
|
return dataTestnet;
|
|
|
|
|
}
|
2013-05-07 15:16:25 +02:00
|
|
|
};
|
|
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
/**
|
|
|
|
|
* Regression test
|
|
|
|
|
*/
|
2013-05-07 15:16:25 +02:00
|
|
|
class CRegTestParams : public CTestNetParams {
|
|
|
|
|
public:
|
2015-09-30 12:55:34 -05:00
|
|
|
CRegTestParams(CScript scriptDestination) : CTestNetParams(scriptDestination) {
|
2014-06-19 15:10:04 +02:00
|
|
|
networkID = CBaseChainParams::REGTEST;
|
2014-06-11 12:23:49 +02:00
|
|
|
strNetworkID = "regtest";
|
2013-05-07 15:16:25 +02:00
|
|
|
pchMessageStart[0] = 0xfa;
|
|
|
|
|
pchMessageStart[1] = 0xbf;
|
|
|
|
|
pchMessageStart[2] = 0xb5;
|
|
|
|
|
pchMessageStart[3] = 0xda;
|
|
|
|
|
nSubsidyHalvingInterval = 150;
|
2014-03-22 19:52:26 +01:00
|
|
|
nEnforceBlockUpgradeMajority = 750;
|
|
|
|
|
nRejectBlockOutdatedMajority = 950;
|
|
|
|
|
nToCheckBlockUpgradeMajority = 1000;
|
2014-03-07 22:47:56 -08:00
|
|
|
nMinerThreads = 1;
|
2014-10-25 17:24:16 +08:00
|
|
|
nTargetTimespan = 14 * 24 * 60 * 60; //! two weeks
|
2014-03-22 18:29:34 +01:00
|
|
|
nTargetSpacing = 10 * 60;
|
2014-04-20 03:19:20 +02:00
|
|
|
bnProofOfWorkLimit = ~uint256(0) >> 1;
|
2013-05-07 15:16:25 +02:00
|
|
|
genesis.nTime = 1296688602;
|
|
|
|
|
nDefaultPort = 18444;
|
2015-03-25 14:18:38 -07:00
|
|
|
|
2015-06-03 12:47:29 -07:00
|
|
|
CMutableTransaction txNew(genesis.vtx[0]);
|
|
|
|
|
txNew.vout.resize(2);
|
|
|
|
|
txNew.vout[0].nValue = MAX_MONEY / 2;
|
|
|
|
|
txNew.vout[1].nValue = MAX_MONEY / 2;
|
|
|
|
|
txNew.vout[1].scriptPubKey = CScript() << OP_TRUE;
|
|
|
|
|
genesis.vtx[0] = CTransaction(txNew);
|
|
|
|
|
|
2015-09-30 12:55:34 -05:00
|
|
|
if (scriptDestination.empty()) {
|
|
|
|
|
scriptDestination = CScript() << OP_TRUE;
|
|
|
|
|
}
|
2015-06-03 12:47:29 -07:00
|
|
|
genesis.proof = CProof(scriptDestination, CScript()); // genesis block gets a PoW pass
|
|
|
|
|
genesis.hashMerkleRoot = genesis.BuildMerkleTree();
|
|
|
|
|
|
2015-03-25 14:18:38 -07:00
|
|
|
hashGenesisBlock = genesis.GetHash();
|
|
|
|
|
mapCheckpointsRegtest[0] = hashGenesisBlock;
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
vFixedSeeds.clear(); //! Regtest mode doesn't have any fixed seeds.
|
|
|
|
|
vSeeds.clear(); //! Regtest mode doesn't have any DNS seeds.
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-06-04 12:51:29 +02:00
|
|
|
fRequireRPCPassword = false;
|
|
|
|
|
fMiningRequiresPeers = false;
|
|
|
|
|
fAllowMinDifficultyBlocks = true;
|
2015-03-13 09:25:34 -07:00
|
|
|
fDefaultConsistencyChecks = true;
|
2014-06-04 12:51:29 +02:00
|
|
|
fRequireStandard = false;
|
|
|
|
|
fMineBlocksOnDemand = true;
|
2014-08-31 22:32:52 +02:00
|
|
|
fTestnetToBeDeprecatedFieldRPC = false;
|
2014-06-04 12:51:29 +02:00
|
|
|
}
|
2014-08-31 21:32:23 +02:00
|
|
|
const Checkpoints::CCheckpointData& Checkpoints() const
|
|
|
|
|
{
|
|
|
|
|
return dataRegtest;
|
|
|
|
|
}
|
2013-05-07 15:16:25 +02:00
|
|
|
};
|
|
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
/**
|
|
|
|
|
* Unit test
|
|
|
|
|
*/
|
2014-09-04 16:23:42 -03:00
|
|
|
class CUnitTestParams : public CMainParams, public CModifiableParams {
|
|
|
|
|
public:
|
2015-09-30 12:55:34 -05:00
|
|
|
CUnitTestParams(CScript scriptDestination) : CMainParams(scriptDestination) {
|
2014-09-04 16:23:42 -03:00
|
|
|
networkID = CBaseChainParams::UNITTEST;
|
|
|
|
|
strNetworkID = "unittest";
|
|
|
|
|
nDefaultPort = 18445;
|
2014-10-25 17:24:16 +08:00
|
|
|
vFixedSeeds.clear(); //! Unit test mode doesn't have any fixed seeds.
|
|
|
|
|
vSeeds.clear(); //! Unit test mode doesn't have any DNS seeds.
|
2014-09-04 16:23:42 -03:00
|
|
|
|
|
|
|
|
fRequireRPCPassword = false;
|
|
|
|
|
fMiningRequiresPeers = false;
|
2015-03-13 09:25:34 -07:00
|
|
|
fDefaultConsistencyChecks = true;
|
2014-09-04 16:23:42 -03:00
|
|
|
fAllowMinDifficultyBlocks = false;
|
|
|
|
|
fMineBlocksOnDemand = true;
|
|
|
|
|
}
|
2014-08-31 21:32:23 +02:00
|
|
|
|
|
|
|
|
const Checkpoints::CCheckpointData& Checkpoints() const
|
|
|
|
|
{
|
|
|
|
|
// UnitTest share the same checkpoints as MAIN
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-25 17:24:16 +08:00
|
|
|
//! Published setters to allow changing values in unit test cases
|
2014-09-04 16:23:42 -03:00
|
|
|
virtual void setSubsidyHalvingInterval(int anSubsidyHalvingInterval) { nSubsidyHalvingInterval=anSubsidyHalvingInterval; }
|
|
|
|
|
virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority) { nEnforceBlockUpgradeMajority=anEnforceBlockUpgradeMajority; }
|
|
|
|
|
virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority) { nRejectBlockOutdatedMajority=anRejectBlockOutdatedMajority; }
|
|
|
|
|
virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority) { nToCheckBlockUpgradeMajority=anToCheckBlockUpgradeMajority; }
|
2015-03-13 09:25:34 -07:00
|
|
|
virtual void setDefaultConsistencyChecks(bool afDefaultConsistencyChecks) { fDefaultConsistencyChecks=afDefaultConsistencyChecks; }
|
2014-09-04 16:23:42 -03:00
|
|
|
virtual void setAllowMinDifficultyBlocks(bool afAllowMinDifficultyBlocks) { fAllowMinDifficultyBlocks=afAllowMinDifficultyBlocks; }
|
|
|
|
|
virtual void setSkipProofOfWorkCheck(bool afSkipProofOfWorkCheck) { fSkipProofOfWorkCheck = afSkipProofOfWorkCheck; }
|
|
|
|
|
};
|
|
|
|
|
|
2015-09-30 12:55:34 -05:00
|
|
|
static CChainParams *pCurrentParams;
|
2014-09-04 16:23:42 -03:00
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
const CChainParams &Params() {
|
2014-06-19 15:10:04 +02:00
|
|
|
assert(pCurrentParams);
|
2013-05-07 15:16:25 +02:00
|
|
|
return *pCurrentParams;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-30 12:55:34 -05:00
|
|
|
|
|
|
|
|
CChainParams* CChainParams::Factory(CBaseChainParams::Network network, CScript scriptDestination) {
|
2013-05-07 15:16:25 +02:00
|
|
|
switch (network) {
|
2014-06-19 15:10:04 +02:00
|
|
|
case CBaseChainParams::MAIN:
|
2015-09-30 12:55:34 -05:00
|
|
|
return new CMainParams(scriptDestination);
|
2014-06-19 15:10:04 +02:00
|
|
|
case CBaseChainParams::TESTNET:
|
2015-09-30 12:55:34 -05:00
|
|
|
return new CTestNetParams(scriptDestination);
|
2014-06-19 15:10:04 +02:00
|
|
|
case CBaseChainParams::REGTEST:
|
2015-09-30 12:55:34 -05:00
|
|
|
return new CRegTestParams(scriptDestination);
|
2014-09-04 16:23:42 -03:00
|
|
|
case CBaseChainParams::UNITTEST:
|
2015-09-30 12:55:34 -05:00
|
|
|
return new CUnitTestParams(scriptDestination);
|
2013-05-07 15:16:25 +02:00
|
|
|
default:
|
|
|
|
|
assert(false && "Unimplemented network");
|
2015-09-30 12:55:34 -05:00
|
|
|
return NULL;
|
2013-05-07 15:16:25 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-30 12:55:34 -05:00
|
|
|
void SelectParams(CBaseChainParams::Network network, CScript scriptDestination) {
|
2014-08-02 19:54:57 +01:00
|
|
|
SelectBaseParams(network);
|
2015-09-30 12:55:34 -05:00
|
|
|
pCurrentParams = CChainParams::Factory(network, scriptDestination);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SelectParams(CBaseChainParams::Network network) {
|
|
|
|
|
SelectParams(network, CScript());
|
2014-08-02 19:54:57 +01:00
|
|
|
}
|
|
|
|
|
|
2014-10-16 22:49:33 +02:00
|
|
|
bool SelectParamsFromCommandLine()
|
2014-09-01 00:41:28 +02:00
|
|
|
{
|
2014-10-09 19:15:38 +02:00
|
|
|
CBaseChainParams::Network network = NetworkIdFromCommandLine();
|
2015-09-30 12:55:34 -05:00
|
|
|
CScript scriptDestination = ScriptDestinationFromCommandLine();
|
2014-09-01 00:41:28 +02:00
|
|
|
if (network == CBaseChainParams::MAX_NETWORK_TYPES)
|
2013-05-07 15:16:25 +02:00
|
|
|
return false;
|
|
|
|
|
|
2015-09-30 12:55:34 -05:00
|
|
|
SelectParams(network, scriptDestination);
|
2013-05-07 15:16:25 +02:00
|
|
|
return true;
|
|
|
|
|
}
|