2015-02-11 11:58:11 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2019-12-30 22:39:22 +13:00
|
|
|
// Copyright (c) 2009-2019 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 13:57:53 +13:00
|
|
|
#include <uint256.h>
|
2017-10-17 18:47:57 +10:00
|
|
|
#include <limits>
|
2015-02-11 11:58:11 +01:00
|
|
|
|
|
|
|
namespace Consensus {
|
2016-02-15 05:13:27 +01:00
|
|
|
|
|
|
|
enum DeploymentPos
|
|
|
|
{
|
2016-03-09 16:00:53 -05:00
|
|
|
DEPLOYMENT_TESTDUMMY,
|
2016-04-23 23:30:20 +00:00
|
|
|
// NOTE: Also add new deployments to VersionBitsDeploymentInfo in versionbits.cpp
|
2016-03-09 16:00:53 -05: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 18:47:57 +10:00
|
|
|
|
|
|
|
/** Constant for nTimeout very far in the future. */
|
|
|
|
static constexpr int64_t NO_TIMEOUT = std::numeric_limits<int64_t>::max();
|
2017-10-11 20:25:05 -07: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 11:38:20 -04:00
|
|
|
/* Block hash that is excepted from BIP16 enforcement */
|
|
|
|
uint256 BIP16Exception;
|
2015-11-02 16:41:55 -05:00
|
|
|
/** Block height and hash at which BIP34 becomes active */
|
|
|
|
int BIP34Height;
|
|
|
|
uint256 BIP34Hash;
|
2016-07-22 08:27:55 +09:00
|
|
|
/** Block height at which BIP65 becomes active */
|
|
|
|
int BIP65Height;
|
|
|
|
/** Block height at which BIP66 becomes active */
|
|
|
|
int BIP66Height;
|
2019-05-20 14:58:44 -04:00
|
|
|
/** Block height at which CSV (BIP68, BIP112 and BIP113) becomes active */
|
|
|
|
int CSVHeight;
|
2019-05-20 14:59:07 -04:00
|
|
|
/** Block height at which Segwit (BIP141, BIP143 and BIP147) becomes active.
|
|
|
|
* Note that segwit v0 script rules are enforced on all blocks except the
|
|
|
|
* BIP 16 exception blocks. */
|
|
|
|
int SegwitHeight;
|
2019-09-06 00:28:52 +10:00
|
|
|
/** Don't warn about unknown BIP 9 activations below this height.
|
|
|
|
* This prevents us from warning about the CSV and segwit activations. */
|
|
|
|
int MinBIP9WarningHeight;
|
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 15:00:32 -04:00
|
|
|
uint256 powLimit;
|
2015-02-11 11:58:11 +01:00
|
|
|
bool fPowAllowMinDifficultyBlocks;
|
2015-10-19 08:25:29 -04: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 05:33:25 +00:00
|
|
|
uint256 nMinimumChainWork;
|
2017-01-06 11:49:59 +00:00
|
|
|
uint256 defaultAssumeValid;
|
2019-07-17 17:41:32 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If true, witness commitments contain a payload equal to a Bitcoin Script solution
|
|
|
|
* to the signet challenge. See BIP325.
|
|
|
|
*/
|
|
|
|
bool signet_blocks{false};
|
|
|
|
std::vector<uint8_t> signet_challenge;
|
2015-02-11 11:58:11 +01:00
|
|
|
};
|
|
|
|
} // namespace Consensus
|
|
|
|
|
2015-03-21 18:15:31 +01:00
|
|
|
#endif // BITCOIN_CONSENSUS_PARAMS_H
|