2013-05-07 15:16:25 +02:00
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
2016-02-02 16:28:56 +01:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
2016-12-20 14:26:45 +01:00
|
|
|
// Copyright (c) 2014-2017 The Dash Core developers
|
2014-10-25 11:24:16 +02: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"
|
2015-11-17 17:35:44 +01:00
|
|
|
#include "consensus/merkle.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
#include "tinyformat.h"
|
2013-05-07 15:16:25 +02:00
|
|
|
#include "util.h"
|
2014-09-25 05:32:36 +02:00
|
|
|
#include "utilstrencodings.h"
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-08-28 22:56:53 +02:00
|
|
|
#include <assert.h>
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2013-06-23 02:33:47 +02:00
|
|
|
#include <boost/assign/list_of.hpp>
|
|
|
|
|
2014-07-24 13:52:57 +02:00
|
|
|
#include "chainparamsseeds.h"
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2015-07-29 21:13:36 +02:00
|
|
|
static CBlock CreateGenesisBlock(const char* pszTimestamp, const CScript& genesisOutputScript, uint32_t nTime, uint32_t nNonce, uint32_t nBits, int32_t nVersion, const CAmount& genesisReward)
|
2015-07-03 14:29:57 +02:00
|
|
|
{
|
|
|
|
CMutableTransaction txNew;
|
|
|
|
txNew.nVersion = 1;
|
|
|
|
txNew.vin.resize(1);
|
|
|
|
txNew.vout.resize(1);
|
2015-06-05 22:01:44 +02:00
|
|
|
txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << std::vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
|
2015-07-03 14:29:57 +02:00
|
|
|
txNew.vout[0].nValue = genesisReward;
|
|
|
|
txNew.vout[0].scriptPubKey = genesisOutputScript;
|
|
|
|
|
|
|
|
CBlock genesis;
|
|
|
|
genesis.nTime = nTime;
|
|
|
|
genesis.nBits = nBits;
|
|
|
|
genesis.nNonce = nNonce;
|
|
|
|
genesis.nVersion = nVersion;
|
|
|
|
genesis.vtx.push_back(txNew);
|
|
|
|
genesis.hashPrevBlock.SetNull();
|
2015-11-17 17:35:44 +01:00
|
|
|
genesis.hashMerkleRoot = BlockMerkleRoot(genesis);
|
2015-07-03 14:29:57 +02:00
|
|
|
return genesis;
|
|
|
|
}
|
|
|
|
|
2014-10-25 11:24:16 +02:00
|
|
|
/**
|
2015-07-03 14:29:57 +02:00
|
|
|
* Build the genesis block. Note that the output of its generation
|
|
|
|
* transaction cannot be spent since it did not originally exist in the
|
|
|
|
* database.
|
|
|
|
*
|
2016-02-02 16:28:56 +01:00
|
|
|
* CBlock(hash=00000ffd590b14, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=e0028e, nTime=1390095618, nBits=1e0ffff0, nNonce=28917698, vtx=1)
|
|
|
|
* CTransaction(hash=e0028e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
|
|
|
|
* CTxIn(COutPoint(000000, -1), coinbase 04ffff001d01044c5957697265642030392f4a616e2f3230313420546865204772616e64204578706572696d656e7420476f6573204c6976653a204f76657273746f636b2e636f6d204973204e6f7720416363657074696e6720426974636f696e73)
|
|
|
|
* CTxOut(nValue=50.00000000, scriptPubKey=0xA9037BAC7050C479B121CF)
|
|
|
|
* vMerkleTree: e0028e
|
2014-10-25 11:24:16 +02:00
|
|
|
*/
|
2015-07-29 21:13:36 +02:00
|
|
|
static CBlock CreateGenesisBlock(uint32_t nTime, uint32_t nNonce, uint32_t nBits, int32_t nVersion, const CAmount& genesisReward)
|
2013-05-07 15:16:25 +02:00
|
|
|
{
|
2016-02-02 16:28:56 +01:00
|
|
|
const char* pszTimestamp = "Wired 09/Jan/2014 The Grand Experiment Goes Live: Overstock.com Is Now Accepting Bitcoins";
|
|
|
|
const CScript genesisOutputScript = CScript() << ParseHex("040184710fa689ad5023690c80f3a49c8f13f8d45b8c857fbcbc8bc4a8e4d3eb4b10f4d4604fa08dce601aaf0f470216fe1b51850b4acf21b179c45070ac7b03a9") << OP_CHECKSIG;
|
2015-07-03 14:29:57 +02:00
|
|
|
return CreateGenesisBlock(pszTimestamp, genesisOutputScript, nTime, nNonce, nBits, nVersion, genesisReward);
|
2014-07-24 13:52:57 +02:00
|
|
|
}
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-10-25 11:24:16 +02:00
|
|
|
/**
|
|
|
|
* Main network
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* 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-08-02 16:28:38 +02:00
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
|
|
|
|
class CMainParams : public CChainParams {
|
|
|
|
public:
|
|
|
|
CMainParams() {
|
2014-06-11 12:23:49 +02:00
|
|
|
strNetworkID = "main";
|
2016-05-09 21:36:10 +02:00
|
|
|
consensus.nSubsidyHalvingInterval = 210240; // Note: actual number of blocks per calendar year with DGW v3 is ~200700 (for example 449750 - 249050)
|
2016-02-17 17:29:36 +01:00
|
|
|
consensus.nMasternodePaymentsStartBlock = 100000; // not true, but it's ok as long as it's less then nMasternodePaymentsIncreaseBlock
|
2016-05-09 21:36:10 +02:00
|
|
|
consensus.nMasternodePaymentsIncreaseBlock = 158000; // actual historical value
|
|
|
|
consensus.nMasternodePaymentsIncreasePeriod = 576*30; // 17280 - actual historical value
|
2016-06-29 20:20:18 +02:00
|
|
|
consensus.nInstantSendKeepLock = 24;
|
2016-05-09 21:36:10 +02:00
|
|
|
consensus.nBudgetPaymentsStartBlock = 328008; // actual historical value
|
|
|
|
consensus.nBudgetPaymentsCycleBlocks = 16616; // ~(60*24*30)/2.6, actual number of blocks per month is 200700 / 12 = 16725
|
2016-02-17 17:29:36 +01:00
|
|
|
consensus.nBudgetPaymentsWindowBlocks = 100;
|
|
|
|
consensus.nBudgetProposalEstablishingTime = 60*60*24;
|
2017-02-03 18:41:23 +01:00
|
|
|
consensus.nSuperblockStartBlock = 614820; // The block at which 12.1 goes live (end of final 12.0 budget cycle)
|
2016-09-11 20:01:26 +02:00
|
|
|
consensus.nSuperblockCycle = 16616; // ~(60*24*30)/2.6, actual number of blocks per month is 200700 / 12 = 16725
|
2016-08-28 21:15:48 +02:00
|
|
|
consensus.nGovernanceMinQuorum = 10;
|
2017-02-02 09:50:44 +01:00
|
|
|
consensus.nGovernanceFilterElements = 20000;
|
2016-05-19 21:03:17 +02:00
|
|
|
consensus.nMasternodeMinimumConfirmations = 15;
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.nMajorityEnforceBlockUpgrade = 750;
|
|
|
|
consensus.nMajorityRejectBlockOutdated = 950;
|
|
|
|
consensus.nMajorityWindow = 1000;
|
2015-11-02 22:41:55 +01:00
|
|
|
consensus.BIP34Height = 227931;
|
|
|
|
consensus.BIP34Hash = uint256S("0x000000000000024b89b42a942fe0d9fea3bb44ab7bd1b19115dd6a759c0808b8");
|
2016-02-02 16:28:56 +01:00
|
|
|
consensus.powLimit = uint256S("00000fffff000000000000000000000000000000000000000000000000000000");
|
|
|
|
consensus.nPowTargetTimespan = 24 * 60 * 60; // Dash: 1 day
|
|
|
|
consensus.nPowTargetSpacing = 2.5 * 60; // Dash: 2.5 minutes
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.fPowAllowMinDifficultyBlocks = false;
|
2015-10-19 14:25:29 +02:00
|
|
|
consensus.fPowNoRetargeting = false;
|
2016-02-15 05:13:27 +01:00
|
|
|
consensus.nRuleChangeActivationThreshold = 1916; // 95% of 2016
|
|
|
|
consensus.nMinerConfirmationWindow = 2016; // nPowTargetTimespan / nPowTargetSpacing
|
2016-03-09 22:00:53 +01:00
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28;
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = 1199145601; // January 1, 2008
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = 1230767999; // December 31, 2008
|
2016-02-20 23:37:13 +01:00
|
|
|
|
|
|
|
// Deployment of BIP68, BIP112, and BIP113.
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0;
|
2017-02-04 01:41:18 +01:00
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 1486252800; // Feb 5th, 2017
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = 1517788800; // Feb 5th, 2018
|
2016-02-20 23:37:13 +01:00
|
|
|
|
2016-05-10 09:41:40 +02:00
|
|
|
/**
|
2014-10-25 11:24:16 +02: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
|
2015-04-28 16:47:17 +02:00
|
|
|
* a large 32-bit integer with any alignment.
|
2014-10-25 11:24:16 +02:00
|
|
|
*/
|
2014-11-28 10:56:02 +01:00
|
|
|
pchMessageStart[0] = 0xbf;
|
|
|
|
pchMessageStart[1] = 0x0c;
|
|
|
|
pchMessageStart[2] = 0x6b;
|
|
|
|
pchMessageStart[3] = 0xbd;
|
2014-12-12 23:19:02 +01:00
|
|
|
vAlertPubKey = ParseHex("048240a8748a80a286b270ba126705ced4f2ce5a7847b3610ea3c06513150dade2a8512ed5ea86320824683fc0818f0ac019214973e677acd1244f6d0571fc5103");
|
2014-11-27 18:09:11 +01:00
|
|
|
nDefaultPort = 9999;
|
2016-02-18 23:30:10 +01:00
|
|
|
nMaxTipAge = 6 * 60 * 60; // ~144 blocks behind -> 2 x fork detection time, was 24 * 60 * 60 in bitcoin
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
nPruneAfterHeight = 100000;
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
genesis = CreateGenesisBlock(1390095618, 28917698, 0x1e0ffff0, 1, 50 * COIN);
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.hashGenesisBlock = genesis.GetHash();
|
2016-02-02 16:28:56 +01:00
|
|
|
assert(consensus.hashGenesisBlock == uint256S("0x00000ffd590b1485b3caadc19b22e6379c733355108f107a430458cdf3407ab6"));
|
|
|
|
assert(genesis.hashMerkleRoot == uint256S("0xe0028eb9648db56b1ac77cf090b99048a8007e2bb64b68f092c03c7f56a662c7"));
|
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2017-03-15 00:55:52 +01:00
|
|
|
vSeeds.push_back(CDNSSeedData("dash.org", "dnsseed.dash.org"));
|
2016-06-21 18:33:33 +02:00
|
|
|
vSeeds.push_back(CDNSSeedData("dashdot.io", "dnsseed.dashdot.io"));
|
2015-04-13 15:53:55 +02:00
|
|
|
vSeeds.push_back(CDNSSeedData("masternode.io", "dnsseed.masternode.io"));
|
2015-04-13 15:55:09 +02:00
|
|
|
vSeeds.push_back(CDNSSeedData("dashpay.io", "dnsseed.dashpay.io"));
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
// Dash addresses start with 'X'
|
|
|
|
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,76);
|
|
|
|
// Dash script addresses start with '7'
|
|
|
|
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,16);
|
|
|
|
// Dash private keys start with '7' or 'X'
|
|
|
|
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,204);
|
2016-08-02 00:00:24 +02:00
|
|
|
// Dash BIP32 pubkeys start with 'xpub' (Bitcoin defaults)
|
|
|
|
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x88)(0xB2)(0x1E).convert_to_container<std::vector<unsigned char> >();
|
|
|
|
// Dash BIP32 prvkeys start with 'xprv' (Bitcoin defaults)
|
|
|
|
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x88)(0xAD)(0xE4).convert_to_container<std::vector<unsigned char> >();
|
2017-05-29 13:51:40 +02:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
// Dash BIP44 coin type is '5'
|
2017-05-29 13:51:40 +02:00
|
|
|
nExtCoinType = 5;
|
2016-09-12 19:40:46 +02:00
|
|
|
|
2015-01-24 05:40:50 +01:00
|
|
|
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_main, pnSeed6_main + ARRAYLEN(pnSeed6_main));
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-06-04 12:51:29 +02:00
|
|
|
fMiningRequiresPeers = true;
|
2015-03-13 17:25:34 +01:00
|
|
|
fDefaultConsistencyChecks = false;
|
2014-06-04 12:51:29 +02:00
|
|
|
fRequireStandard = true;
|
|
|
|
fMineBlocksOnDemand = false;
|
2014-08-31 22:32:52 +02:00
|
|
|
fTestnetToBeDeprecatedFieldRPC = false;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
|
|
|
nPoolMaxTransactions = 3;
|
2016-09-27 09:50:04 +02:00
|
|
|
nFulfilledRequestExpireTime = 60*60; // fulfilled requests expire in 1 hour
|
2016-07-30 13:04:27 +02:00
|
|
|
strSporkPubKey = "04549ac134f694c0243f503e8c8a9a986f5de6610049c40b07816809b0d1d06a21b07be27b9bb555931773f62ba6cf35a25fd52f694d4e1106ccd237a7bb899fdd";
|
2015-04-03 00:51:08 +02:00
|
|
|
strMasternodePaymentsPubKey = "04549ac134f694c0243f503e8c8a9a986f5de6610049c40b07816809b0d1d06a21b07be27b9bb555931773f62ba6cf35a25fd52f694d4e1106ccd237a7bb899fdd";
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2015-06-05 21:36:34 +02:00
|
|
|
checkpointData = (CCheckpointData) {
|
2015-04-24 00:30:55 +02:00
|
|
|
boost::assign::map_list_of
|
2016-02-02 16:28:56 +01:00
|
|
|
( 1500, uint256S("0x000000aaf0300f59f49bc3e970bad15c11f961fe2347accffff19d96ec9778e3"))
|
|
|
|
( 4991, uint256S("0x000000003b01809551952460744d5dbb8fcbd6cbae3c220267bf7fa43f837367"))
|
|
|
|
( 9918, uint256S("0x00000000213e229f332c0ffbe34defdaa9e74de87f2d8d1f01af8d121c3c170b"))
|
|
|
|
( 16912, uint256S("0x00000000075c0d10371d55a60634da70f197548dbbfa4123e12abfcbc5738af9"))
|
|
|
|
( 23912, uint256S("0x0000000000335eac6703f3b1732ec8b2f89c3ba3a7889e5767b090556bb9a276"))
|
|
|
|
( 35457, uint256S("0x0000000000b0ae211be59b048df14820475ad0dd53b9ff83b010f71a77342d9f"))
|
|
|
|
( 45479, uint256S("0x000000000063d411655d590590e16960f15ceea4257122ac430c6fbe39fbf02d"))
|
|
|
|
( 55895, uint256S("0x0000000000ae4c53a43639a4ca027282f69da9c67ba951768a20415b6439a2d7"))
|
|
|
|
( 68899, uint256S("0x0000000000194ab4d3d9eeb1f2f792f21bb39ff767cb547fe977640f969d77b7"))
|
|
|
|
( 74619, uint256S("0x000000000011d28f38f05d01650a502cc3f4d0e793fbc26e2a2ca71f07dc3842"))
|
|
|
|
( 75095, uint256S("0x0000000000193d12f6ad352a9996ee58ef8bdc4946818a5fec5ce99c11b87f0d"))
|
|
|
|
( 88805, uint256S("0x00000000001392f1652e9bf45cd8bc79dc60fe935277cd11538565b4a94fa85f"))
|
|
|
|
( 107996, uint256S("0x00000000000a23840ac16115407488267aa3da2b9bc843e301185b7d17e4dc40"))
|
|
|
|
( 137993, uint256S("0x00000000000cf69ce152b1bffdeddc59188d7a80879210d6e5c9503011929c3c"))
|
|
|
|
( 167996, uint256S("0x000000000009486020a80f7f2cc065342b0c2fb59af5e090cd813dba68ab0fed"))
|
|
|
|
( 207992, uint256S("0x00000000000d85c22be098f74576ef00b7aa00c05777e966aff68a270f1e01a5"))
|
|
|
|
( 312645, uint256S("0x0000000000059dcb71ad35a9e40526c44e7aae6c99169a9e7017b7d84b1c2daf"))
|
2016-08-28 12:11:54 +02:00
|
|
|
( 407452, uint256S("0x000000000003c6a87e73623b9d70af7cd908ae22fee466063e4ffc20be1d2dbc"))
|
|
|
|
( 523412, uint256S("0x000000000000e54f036576a10597e0e42cc22a5159ce572f999c33975e121d4d"))
|
|
|
|
( 523930, uint256S("0x0000000000000bccdb11c2b1cfb0ecab452abf267d89b7f46eaf2d54ce6e652c")),
|
|
|
|
1471809614, // * UNIX timestamp of last checkpoint block
|
|
|
|
1998064, // * total number of transactions between genesis and last checkpoint
|
2015-04-24 00:30:55 +02:00
|
|
|
// (the tx=... number in the SetBestChain debug.log lines)
|
2016-02-02 16:28:56 +01:00
|
|
|
2800 // * estimated number of transactions per day after checkpoint
|
2015-04-24 00:30:55 +02:00
|
|
|
};
|
2013-05-07 15:16:25 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
static CMainParams mainParams;
|
|
|
|
|
2014-10-25 11:24:16 +02:00
|
|
|
/**
|
|
|
|
* Testnet (v3)
|
|
|
|
*/
|
2015-07-03 14:30:18 +02:00
|
|
|
class CTestNetParams : public CChainParams {
|
2013-05-07 15:16:25 +02:00
|
|
|
public:
|
|
|
|
CTestNetParams() {
|
2014-06-11 12:23:49 +02:00
|
|
|
strNetworkID = "test";
|
2016-02-15 14:09:43 +01:00
|
|
|
consensus.nSubsidyHalvingInterval = 210240;
|
2016-02-17 17:29:36 +01:00
|
|
|
consensus.nMasternodePaymentsStartBlock = 10000; // not true, but it's ok as long as it's less then nMasternodePaymentsIncreaseBlock
|
|
|
|
consensus.nMasternodePaymentsIncreaseBlock = 46000;
|
|
|
|
consensus.nMasternodePaymentsIncreasePeriod = 576;
|
2016-06-29 20:20:18 +02:00
|
|
|
consensus.nInstantSendKeepLock = 6;
|
2016-08-29 01:22:25 +02:00
|
|
|
consensus.nBudgetPaymentsStartBlock = 60000;
|
2016-02-17 17:29:36 +01:00
|
|
|
consensus.nBudgetPaymentsCycleBlocks = 50;
|
|
|
|
consensus.nBudgetPaymentsWindowBlocks = 10;
|
|
|
|
consensus.nBudgetProposalEstablishingTime = 60*20;
|
2016-08-29 01:22:25 +02:00
|
|
|
consensus.nSuperblockStartBlock = 61000; // NOTE: Should satisfy nSuperblockStartBlock > nBudgetPeymentsStartBlock
|
2016-08-22 03:41:40 +02:00
|
|
|
consensus.nSuperblockCycle = 24; // Superblocks can be issued hourly on testnet
|
2016-08-28 21:15:48 +02:00
|
|
|
consensus.nGovernanceMinQuorum = 1;
|
2017-02-02 09:50:44 +01:00
|
|
|
consensus.nGovernanceFilterElements = 500;
|
2016-05-19 21:03:17 +02:00
|
|
|
consensus.nMasternodeMinimumConfirmations = 1;
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.nMajorityEnforceBlockUpgrade = 51;
|
|
|
|
consensus.nMajorityRejectBlockOutdated = 75;
|
|
|
|
consensus.nMajorityWindow = 100;
|
2015-11-02 22:41:55 +01:00
|
|
|
consensus.BIP34Height = 21111;
|
|
|
|
consensus.BIP34Hash = uint256S("0x0000000023b3a96d3484e5abb3755c413e7d41500f8e2a5c3f0dd01299cd8ef8");
|
2016-02-02 16:28:56 +01:00
|
|
|
consensus.powLimit = uint256S("00000fffff000000000000000000000000000000000000000000000000000000");
|
|
|
|
consensus.nPowTargetTimespan = 24 * 60 * 60; // Dash: 1 day
|
|
|
|
consensus.nPowTargetSpacing = 2.5 * 60; // Dash: 2.5 minutes
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.fPowAllowMinDifficultyBlocks = true;
|
2015-10-19 14:25:29 +02:00
|
|
|
consensus.fPowNoRetargeting = false;
|
2016-02-15 05:13:27 +01:00
|
|
|
consensus.nRuleChangeActivationThreshold = 1512; // 75% for testchains
|
|
|
|
consensus.nMinerConfirmationWindow = 2016; // nPowTargetTimespan / nPowTargetSpacing
|
2016-03-09 22:00:53 +01:00
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28;
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = 1199145601; // January 1, 2008
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = 1230767999; // December 31, 2008
|
2016-02-20 23:37:13 +01:00
|
|
|
|
|
|
|
// Deployment of BIP68, BIP112, and BIP113.
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0;
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 1456790400; // March 1st, 2016
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = 1493596800; // May 1st, 2017
|
2016-03-08 07:33:23 +01:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
pchMessageStart[0] = 0xce;
|
|
|
|
pchMessageStart[1] = 0xe2;
|
|
|
|
pchMessageStart[2] = 0xca;
|
|
|
|
pchMessageStart[3] = 0xff;
|
|
|
|
vAlertPubKey = ParseHex("04517d8a699cb43d3938d7b24faaff7cda448ca4ea267723ba614784de661949bf632d6304316b244646dea079735b9a6fc4af804efb4752075b9fe2245e14e412");
|
|
|
|
nDefaultPort = 19999;
|
2016-02-18 23:30:10 +01:00
|
|
|
nMaxTipAge = 0x7fffffff; // allow mining on top of old blocks for testnet
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
nPruneAfterHeight = 1000;
|
2014-11-28 10:56:02 +01:00
|
|
|
|
2016-12-14 14:33:46 +01:00
|
|
|
genesis = CreateGenesisBlock(1390666206UL, 3861367235UL, 0x1e0ffff0, 1, 50 * COIN);
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.hashGenesisBlock = genesis.GetHash();
|
2016-02-02 16:28:56 +01:00
|
|
|
assert(consensus.hashGenesisBlock == uint256S("0x00000bafbc94add76cb75e2ec92894837288a481e5c005f6563d91623bf8bc2c"));
|
|
|
|
assert(genesis.hashMerkleRoot == uint256S("0xe0028eb9648db56b1ac77cf090b99048a8007e2bb64b68f092c03c7f56a662c7"));
|
2013-05-07 15:16:25 +02:00
|
|
|
|
|
|
|
vFixedSeeds.clear();
|
|
|
|
vSeeds.clear();
|
2016-05-31 13:54:09 +02:00
|
|
|
vSeeds.push_back(CDNSSeedData("dashdot.io", "testnet-seed.dashdot.io"));
|
2014-12-26 21:32:11 +01:00
|
|
|
vSeeds.push_back(CDNSSeedData("masternode.io", "test.dnsseed.masternode.io"));
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2016-08-02 00:00:24 +02:00
|
|
|
// Testnet Dash addresses start with 'y'
|
2016-05-09 20:28:29 +02:00
|
|
|
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,140);
|
2016-08-02 00:00:24 +02:00
|
|
|
// Testnet Dash script addresses start with '8' or '9'
|
2016-02-02 16:28:56 +01:00
|
|
|
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,19);
|
|
|
|
// Testnet private keys start with '9' or 'c' (Bitcoin defaults)
|
2014-11-24 23:25:58 +01:00
|
|
|
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,239);
|
2016-08-02 00:00:24 +02:00
|
|
|
// Testnet Dash BIP32 pubkeys start with 'tpub' (Bitcoin defaults)
|
|
|
|
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x35)(0x87)(0xCF).convert_to_container<std::vector<unsigned char> >();
|
|
|
|
// Testnet Dash BIP32 prvkeys start with 'tprv' (Bitcoin defaults)
|
|
|
|
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x35)(0x83)(0x94).convert_to_container<std::vector<unsigned char> >();
|
2017-05-29 13:51:40 +02:00
|
|
|
|
2016-08-02 00:00:24 +02:00
|
|
|
// Testnet Dash BIP44 coin type is '1' (All coin's testnet default)
|
2017-05-29 13:51:40 +02:00
|
|
|
nExtCoinType = 1;
|
2016-09-12 19:40:46 +02:00
|
|
|
|
2015-01-24 05:40:50 +01:00
|
|
|
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_test, pnSeed6_test + ARRAYLEN(pnSeed6_test));
|
2014-07-24 13:52:57 +02:00
|
|
|
|
2014-06-04 12:51:29 +02:00
|
|
|
fMiningRequiresPeers = true;
|
2015-03-13 17:25:34 +01:00
|
|
|
fDefaultConsistencyChecks = false;
|
2014-06-04 12:51:29 +02:00
|
|
|
fRequireStandard = false;
|
|
|
|
fMineBlocksOnDemand = false;
|
2014-08-31 22:32:52 +02:00
|
|
|
fTestnetToBeDeprecatedFieldRPC = true;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2016-09-11 20:31:39 +02:00
|
|
|
nPoolMaxTransactions = 3;
|
2016-09-27 09:50:04 +02:00
|
|
|
nFulfilledRequestExpireTime = 5*60; // fulfilled requests expire in 5 minutes
|
2016-07-30 13:04:27 +02:00
|
|
|
strSporkPubKey = "046f78dcf911fbd61910136f7f0f8d90578f68d0b3ac973b5040fb7afb501b5939f39b108b0569dca71488f5bbf498d92e4d1194f6f941307ffd95f75e76869f0e";
|
2015-04-03 00:51:08 +02:00
|
|
|
strMasternodePaymentsPubKey = "046f78dcf911fbd61910136f7f0f8d90578f68d0b3ac973b5040fb7afb501b5939f39b108b0569dca71488f5bbf498d92e4d1194f6f941307ffd95f75e76869f0e";
|
2016-09-27 09:50:04 +02:00
|
|
|
|
2015-06-05 21:36:34 +02:00
|
|
|
checkpointData = (CCheckpointData) {
|
2015-04-24 00:30:55 +02:00
|
|
|
boost::assign::map_list_of
|
2016-12-30 08:05:29 +01:00
|
|
|
( 261, uint256S("0x00000c26026d0815a7e2ce4fa270775f61403c040647ff2c3091f99e894a4618"))
|
|
|
|
( 1999, uint256S("0x00000052e538d27fa53693efe6fb6892a0c1d26c0235f599171c48a3cce553b1"))
|
|
|
|
( 2999, uint256S("0x0000024bc3f4f4cb30d29827c13d921ad77d2c6072e586c7f60d83c2722cdcc5"))
|
|
|
|
( 12907, uint256S("0x00000067de20fd6d276ee0839a3187b203accaa5aad04ca5c17c2997e2730e4c"))
|
|
|
|
( 15590, uint256S("0x00000009df8f2ee9c230aef9dad257d82bde20ca83378a208ce5d95d29a78852"))
|
|
|
|
( 65900, uint256S("0x00000063e4e94d75d0dc075e93898444c8ef50655990dfff7c32d92a7efff671"))
|
|
|
|
( 127618, uint256S("0x0000002104a2c1fc923b0e3b74b1860236fbc2b4479a833c28abaf456ea4e466")),
|
|
|
|
|
|
|
|
1483076495, // * UNIX timestamp of last checkpoint block
|
|
|
|
168590, // * total number of transactions between genesis and last checkpoint
|
2016-05-10 09:41:40 +02:00
|
|
|
// (the tx=... number in the SetBestChain debug.log lines)
|
|
|
|
500 // * estimated number of transactions per day after checkpoint
|
2015-04-24 00:30:55 +02:00
|
|
|
};
|
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
static CTestNetParams testNetParams;
|
|
|
|
|
2014-10-25 11:24:16 +02:00
|
|
|
/**
|
|
|
|
* Regression test
|
|
|
|
*/
|
2015-07-03 14:30:18 +02:00
|
|
|
class CRegTestParams : public CChainParams {
|
2013-05-07 15:16:25 +02:00
|
|
|
public:
|
|
|
|
CRegTestParams() {
|
2014-06-11 12:23:49 +02:00
|
|
|
strNetworkID = "regtest";
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.nSubsidyHalvingInterval = 150;
|
2016-03-06 16:07:30 +01:00
|
|
|
consensus.nMasternodePaymentsStartBlock = 240;
|
|
|
|
consensus.nMasternodePaymentsIncreaseBlock = 350;
|
|
|
|
consensus.nMasternodePaymentsIncreasePeriod = 10;
|
2016-06-29 20:20:18 +02:00
|
|
|
consensus.nInstantSendKeepLock = 6;
|
2016-02-17 17:29:36 +01:00
|
|
|
consensus.nBudgetPaymentsStartBlock = 1000;
|
|
|
|
consensus.nBudgetPaymentsCycleBlocks = 50;
|
2016-08-22 03:41:40 +02:00
|
|
|
consensus.nBudgetPaymentsWindowBlocks = 10;
|
2016-02-17 17:29:36 +01:00
|
|
|
consensus.nBudgetProposalEstablishingTime = 60*20;
|
2016-08-22 03:41:40 +02:00
|
|
|
consensus.nSuperblockStartBlock = 1500;
|
|
|
|
consensus.nSuperblockCycle = 10;
|
2016-08-28 21:15:48 +02:00
|
|
|
consensus.nGovernanceMinQuorum = 1;
|
2017-02-02 09:50:44 +01:00
|
|
|
consensus.nGovernanceFilterElements = 100;
|
2016-05-19 21:03:17 +02:00
|
|
|
consensus.nMasternodeMinimumConfirmations = 1;
|
2015-02-11 11:58:11 +01:00
|
|
|
consensus.nMajorityEnforceBlockUpgrade = 750;
|
|
|
|
consensus.nMajorityRejectBlockOutdated = 950;
|
|
|
|
consensus.nMajorityWindow = 1000;
|
2015-11-02 22:41:55 +01:00
|
|
|
consensus.BIP34Height = -1; // BIP34 has not necessarily activated on regtest
|
|
|
|
consensus.BIP34Hash = uint256();
|
2015-03-25 20:00:32 +01:00
|
|
|
consensus.powLimit = uint256S("7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
|
2016-02-02 16:28:56 +01:00
|
|
|
consensus.nPowTargetTimespan = 24 * 60 * 60; // Dash: 1 day
|
|
|
|
consensus.nPowTargetSpacing = 2.5 * 60; // Dash: 2.5 minutes
|
2015-07-03 14:30:18 +02:00
|
|
|
consensus.fPowAllowMinDifficultyBlocks = true;
|
2015-10-19 14:25:29 +02:00
|
|
|
consensus.fPowNoRetargeting = true;
|
2016-02-15 05:13:27 +01:00
|
|
|
consensus.nRuleChangeActivationThreshold = 108; // 75% for testchains
|
|
|
|
consensus.nMinerConfirmationWindow = 144; // Faster than normal for regtest (144 instead of 2016)
|
2016-03-09 22:00:53 +01:00
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].bit = 28;
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nStartTime = 0;
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_TESTDUMMY].nTimeout = 999999999999ULL;
|
2016-02-20 23:37:13 +01:00
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].bit = 0;
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nStartTime = 0;
|
|
|
|
consensus.vDeployments[Consensus::DEPLOYMENT_CSV].nTimeout = 999999999999ULL;
|
2015-07-29 21:13:36 +02:00
|
|
|
|
2014-11-28 10:56:02 +01:00
|
|
|
pchMessageStart[0] = 0xfc;
|
|
|
|
pchMessageStart[1] = 0xc1;
|
|
|
|
pchMessageStart[2] = 0xb7;
|
|
|
|
pchMessageStart[3] = 0xdc;
|
2016-02-18 23:30:10 +01:00
|
|
|
nMaxTipAge = 6 * 60 * 60; // ~144 blocks behind -> 2 x fork detection time, was 24 * 60 * 60 in bitcoin
|
2015-04-03 00:51:08 +02:00
|
|
|
nDefaultPort = 19994;
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
nPruneAfterHeight = 1000;
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
genesis = CreateGenesisBlock(1417713337, 1096447, 0x207fffff, 1, 50 * COIN);
|
2015-07-29 21:13:36 +02:00
|
|
|
consensus.hashGenesisBlock = genesis.GetHash();
|
2016-02-02 16:28:56 +01:00
|
|
|
assert(consensus.hashGenesisBlock == uint256S("0x000008ca1832a4baf228eb1553c03d3a2c8e02399550dd6ea8d65cec3ef23d2e"));
|
|
|
|
assert(genesis.hashMerkleRoot == uint256S("0xe0028eb9648db56b1ac77cf090b99048a8007e2bb64b68f092c03c7f56a662c7"));
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-10-25 11:24:16 +02: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
|
|
|
fMiningRequiresPeers = false;
|
2015-03-13 17:25:34 +01: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-08-31 21:32:23 +02:00
|
|
|
|
2016-09-27 09:50:04 +02:00
|
|
|
nFulfilledRequestExpireTime = 5*60; // fulfilled requests expire in 5 minutes
|
|
|
|
|
2015-06-05 21:36:34 +02:00
|
|
|
checkpointData = (CCheckpointData){
|
2015-04-24 00:30:55 +02:00
|
|
|
boost::assign::map_list_of
|
2016-02-02 16:28:56 +01:00
|
|
|
( 0, uint256S("0x000008ca1832a4baf228eb1553c03d3a2c8e02399550dd6ea8d65cec3ef23d2e")),
|
2015-04-24 00:30:55 +02:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0
|
|
|
|
};
|
2016-08-02 00:00:24 +02:00
|
|
|
// Regtest Dash addresses start with 'y'
|
2016-05-09 20:28:29 +02:00
|
|
|
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,140);
|
2016-08-02 00:00:24 +02:00
|
|
|
// Regtest Dash script addresses start with '8' or '9'
|
2016-02-02 16:28:56 +01:00
|
|
|
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,19);
|
|
|
|
// Regtest private keys start with '9' or 'c' (Bitcoin defaults)
|
2015-07-03 14:30:18 +02:00
|
|
|
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1,239);
|
2016-08-02 00:00:24 +02:00
|
|
|
// Regtest Dash BIP32 pubkeys start with 'tpub' (Bitcoin defaults)
|
|
|
|
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x35)(0x87)(0xCF).convert_to_container<std::vector<unsigned char> >();
|
|
|
|
// Regtest Dash BIP32 prvkeys start with 'tprv' (Bitcoin defaults)
|
|
|
|
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x35)(0x83)(0x94).convert_to_container<std::vector<unsigned char> >();
|
2017-05-29 13:51:40 +02:00
|
|
|
|
2016-08-02 00:00:24 +02:00
|
|
|
// Regtest Dash BIP44 coin type is '1' (All coin's testnet default)
|
2017-05-29 13:51:40 +02:00
|
|
|
nExtCoinType = 1;
|
2016-02-02 16:28:56 +01:00
|
|
|
}
|
2014-09-04 21:23:42 +02:00
|
|
|
};
|
2013-05-07 15:16:25 +02:00
|
|
|
static CRegTestParams regTestParams;
|
2014-09-04 21:23:42 +02:00
|
|
|
|
2014-06-19 15:10:04 +02:00
|
|
|
static CChainParams *pCurrentParams = 0;
|
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-06-30 21:39:49 +02:00
|
|
|
CChainParams& Params(const std::string& chain)
|
|
|
|
{
|
|
|
|
if (chain == CBaseChainParams::MAIN)
|
2014-08-02 20:54:57 +02:00
|
|
|
return mainParams;
|
2015-06-30 21:39:49 +02:00
|
|
|
else if (chain == CBaseChainParams::TESTNET)
|
2014-08-02 20:54:57 +02:00
|
|
|
return testNetParams;
|
2015-06-30 21:39:49 +02:00
|
|
|
else if (chain == CBaseChainParams::REGTEST)
|
2014-08-02 20:54:57 +02:00
|
|
|
return regTestParams;
|
2015-06-30 21:39:49 +02:00
|
|
|
else
|
|
|
|
throw std::runtime_error(strprintf("%s: Unknown chain %s.", __func__, chain));
|
2013-05-07 15:16:25 +02:00
|
|
|
}
|
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
void SelectParams(const std::string& network)
|
|
|
|
{
|
2014-08-02 20:54:57 +02:00
|
|
|
SelectBaseParams(network);
|
|
|
|
pCurrentParams = &Params(network);
|
|
|
|
}
|