2015-02-11 11:58:11 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-01-02 18:12:05 +01:00
|
|
|
// Copyright (c) 2009-2017 The Bitcoin Core developers
|
2015-02-11 11:58:11 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2015-03-21 18:15:31 +01:00
|
|
|
#ifndef BITCOIN_CONSENSUS_PARAMS_H
|
|
|
|
#define BITCOIN_CONSENSUS_PARAMS_H
|
2015-02-11 11:58:11 +01:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <uint256.h>
|
2017-10-17 10:47:57 +02:00
|
|
|
#include <limits>
|
2016-02-15 05:13:27 +01:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2015-02-11 11:58:11 +01:00
|
|
|
|
|
|
|
namespace Consensus {
|
2016-02-15 05:13:27 +01:00
|
|
|
|
|
|
|
enum DeploymentPos
|
|
|
|
{
|
2016-03-09 22:00:53 +01:00
|
|
|
DEPLOYMENT_TESTDUMMY,
|
2016-02-20 23:37:13 +01:00
|
|
|
DEPLOYMENT_CSV, // Deployment of BIP68, BIP112, and BIP113.
|
2016-10-17 13:24:37 +02:00
|
|
|
DEPLOYMENT_SEGWIT, // Deployment of BIP141, BIP143, and BIP147.
|
2016-04-24 01:30:20 +02:00
|
|
|
// NOTE: Also add new deployments to VersionBitsDeploymentInfo in versionbits.cpp
|
2016-03-09 22:00:53 +01:00
|
|
|
MAX_VERSION_BITS_DEPLOYMENTS
|
2016-02-15 05:13:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Struct for each individual consensus rule change using BIP9.
|
|
|
|
*/
|
|
|
|
struct BIP9Deployment {
|
|
|
|
/** Bit position to select the particular bit in nVersion. */
|
|
|
|
int bit;
|
|
|
|
/** Start MedianTime for version bits miner confirmation. Can be a date in the past */
|
|
|
|
int64_t nStartTime;
|
|
|
|
/** Timeout/expiry MedianTime for the deployment attempt. */
|
|
|
|
int64_t nTimeout;
|
2017-10-17 10:47:57 +02:00
|
|
|
|
|
|
|
/** Constant for nTimeout very far in the future. */
|
|
|
|
static constexpr int64_t NO_TIMEOUT = std::numeric_limits<int64_t>::max();
|
2017-10-12 05:25:05 +02:00
|
|
|
|
|
|
|
/** Special value for nStartTime indicating that the deployment is always active.
|
|
|
|
* This is useful for testing, as it means tests don't need to deal with the activation
|
|
|
|
* process (which takes at least 3 BIP9 intervals). Only tests that specifically test the
|
|
|
|
* behaviour during activation cannot use this. */
|
|
|
|
static constexpr int64_t ALWAYS_ACTIVE = -1;
|
2016-02-15 05:13:27 +01:00
|
|
|
};
|
|
|
|
|
2015-02-11 11:58:11 +01:00
|
|
|
/**
|
|
|
|
* Parameters that influence chain consensus.
|
|
|
|
*/
|
|
|
|
struct Params {
|
|
|
|
uint256 hashGenesisBlock;
|
|
|
|
int nSubsidyHalvingInterval;
|
2017-09-12 17:38:20 +02:00
|
|
|
/* Block hash that is excepted from BIP16 enforcement */
|
|
|
|
uint256 BIP16Exception;
|
2015-11-02 22:41:55 +01:00
|
|
|
/** Block height and hash at which BIP34 becomes active */
|
|
|
|
int BIP34Height;
|
|
|
|
uint256 BIP34Hash;
|
2016-07-22 01:27:55 +02:00
|
|
|
/** Block height at which BIP65 becomes active */
|
|
|
|
int BIP65Height;
|
|
|
|
/** Block height at which BIP66 becomes active */
|
|
|
|
int BIP66Height;
|
2016-02-15 05:13:27 +01:00
|
|
|
/**
|
2017-01-18 16:15:37 +01:00
|
|
|
* Minimum blocks including miner confirmation of the total of 2016 blocks in a retargeting period,
|
2016-02-15 05:13:27 +01:00
|
|
|
* (nPowTargetTimespan / nPowTargetSpacing) which is also used for BIP9 deployments.
|
|
|
|
* Examples: 1916 for 95%, 1512 for testchains.
|
|
|
|
*/
|
|
|
|
uint32_t nRuleChangeActivationThreshold;
|
|
|
|
uint32_t nMinerConfirmationWindow;
|
|
|
|
BIP9Deployment vDeployments[MAX_VERSION_BITS_DEPLOYMENTS];
|
2015-02-11 11:58:11 +01:00
|
|
|
/** Proof of work parameters */
|
2015-03-25 20:00:32 +01:00
|
|
|
uint256 powLimit;
|
2015-02-11 11:58:11 +01:00
|
|
|
bool fPowAllowMinDifficultyBlocks;
|
2015-10-19 14:25:29 +02:00
|
|
|
bool fPowNoRetargeting;
|
2015-02-11 11:58:11 +01:00
|
|
|
int64_t nPowTargetSpacing;
|
|
|
|
int64_t nPowTargetTimespan;
|
|
|
|
int64_t DifficultyAdjustmentInterval() const { return nPowTargetTimespan / nPowTargetSpacing; }
|
2016-10-22 07:33:25 +02:00
|
|
|
uint256 nMinimumChainWork;
|
2017-01-06 12:49:59 +01:00
|
|
|
uint256 defaultAssumeValid;
|
2015-02-11 11:58:11 +01:00
|
|
|
};
|
|
|
|
} // namespace Consensus
|
|
|
|
|
2015-03-21 18:15:31 +01:00
|
|
|
#endif // BITCOIN_CONSENSUS_PARAMS_H
|