Bitcoin Core 22.99.0
P2P Digital Currency
params.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2020 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_CONSENSUS_PARAMS_H
7#define BITCOIN_CONSENSUS_PARAMS_H
8
9#include <uint256.h>
10#include <limits>
11
12namespace Consensus {
13
18enum BuriedDeployment : int16_t {
19 // buried deployments get negative values to avoid overlap with DeploymentPos
20 DEPLOYMENT_HEIGHTINCB = std::numeric_limits<int16_t>::min(),
25};
26constexpr bool ValidDeployment(BuriedDeployment dep) { return dep <= DEPLOYMENT_SEGWIT; }
27
28enum DeploymentPos : uint16_t {
30 DEPLOYMENT_TAPROOT, // Deployment of Schnorr/Taproot (BIPs 340-342)
31 // NOTE: Also add new deployments to VersionBitsDeploymentInfo in deploymentinfo.cpp
33};
34constexpr bool ValidDeployment(DeploymentPos dep) { return dep < MAX_VERSION_BITS_DEPLOYMENTS; }
35
41 int bit;
43 int64_t nStartTime;
45 int64_t nTimeout;
51
53 static constexpr int64_t NO_TIMEOUT = std::numeric_limits<int64_t>::max();
54
59 static constexpr int64_t ALWAYS_ACTIVE = -1;
60
64 static constexpr int64_t NEVER_ACTIVE = -2;
65};
66
70struct Params {
73 /* Block hash that is excepted from BIP16 enforcement */
110
115 bool signet_blocks{false};
116 std::vector<uint8_t> signet_challenge;
117
119 {
120 switch (dep) {
122 return BIP34Height;
123 case DEPLOYMENT_CLTV:
124 return BIP65Height;
126 return BIP66Height;
127 case DEPLOYMENT_CSV:
128 return CSVHeight;
130 return SegwitHeight;
131 } // no default case, so the compiler can warn about missing cases
132 return std::numeric_limits<int>::max();
133 }
134};
135
136} // namespace Consensus
137
138#endif // BITCOIN_CONSENSUS_PARAMS_H
256-bit opaque blob.
Definition: uint256.h:124
Transaction validation functions.
Definition: params.h:12
constexpr bool ValidDeployment(BuriedDeployment dep)
Definition: params.h:26
DeploymentPos
Definition: params.h:28
@ DEPLOYMENT_TAPROOT
Definition: params.h:30
@ DEPLOYMENT_TESTDUMMY
Definition: params.h:29
@ MAX_VERSION_BITS_DEPLOYMENTS
Definition: params.h:32
BuriedDeployment
A buried deployment is one where the height of the activation has been hardcoded into the client impl...
Definition: params.h:18
@ DEPLOYMENT_DERSIG
Definition: params.h:22
@ DEPLOYMENT_CSV
Definition: params.h:23
@ DEPLOYMENT_SEGWIT
Definition: params.h:24
@ DEPLOYMENT_HEIGHTINCB
Definition: params.h:20
@ DEPLOYMENT_CLTV
Definition: params.h:21
Struct for each individual consensus rule change using BIP9.
Definition: params.h:39
int min_activation_height
If lock in occurs, delay activation until at least this block height.
Definition: params.h:50
int bit
Bit position to select the particular bit in nVersion.
Definition: params.h:41
static constexpr int64_t ALWAYS_ACTIVE
Special value for nStartTime indicating that the deployment is always active.
Definition: params.h:59
static constexpr int64_t NEVER_ACTIVE
Special value for nStartTime indicating that the deployment is never active.
Definition: params.h:64
int64_t nTimeout
Timeout/expiry MedianTime for the deployment attempt.
Definition: params.h:45
static constexpr int64_t NO_TIMEOUT
Constant for nTimeout very far in the future.
Definition: params.h:53
int64_t nStartTime
Start MedianTime for version bits miner confirmation.
Definition: params.h:43
Parameters that influence chain consensus.
Definition: params.h:70
int BIP65Height
Block height at which BIP65 becomes active.
Definition: params.h:79
int CSVHeight
Block height at which CSV (BIP68, BIP112 and BIP113) becomes active.
Definition: params.h:83
uint256 BIP34Hash
Definition: params.h:77
uint32_t nMinerConfirmationWindow
Definition: params.h:97
uint256 defaultAssumeValid
By default assume that the signatures in ancestors of this block are valid.
Definition: params.h:109
std::vector< uint8_t > signet_challenge
Definition: params.h:116
int64_t DifficultyAdjustmentInterval() const
Definition: params.h:105
bool signet_blocks
If true, witness commitments contain a payload equal to a Bitcoin Script solution to the signet chall...
Definition: params.h:115
int SegwitHeight
Block height at which Segwit (BIP141, BIP143 and BIP147) becomes active.
Definition: params.h:87
int BIP34Height
Block height and hash at which BIP34 becomes active.
Definition: params.h:76
int nSubsidyHalvingInterval
Definition: params.h:72
BIP9Deployment vDeployments[MAX_VERSION_BITS_DEPLOYMENTS]
Definition: params.h:98
uint256 hashGenesisBlock
Definition: params.h:71
int MinBIP9WarningHeight
Don't warn about unknown BIP 9 activations below this height.
Definition: params.h:90
bool fPowNoRetargeting
Definition: params.h:102
uint256 nMinimumChainWork
The best chain should have at least this much work.
Definition: params.h:107
uint32_t nRuleChangeActivationThreshold
Minimum blocks including miner confirmation of the total of 2016 blocks in a retargeting period,...
Definition: params.h:96
int64_t nPowTargetTimespan
Definition: params.h:104
int BIP66Height
Block height at which BIP66 becomes active.
Definition: params.h:81
uint256 powLimit
Proof of work parameters.
Definition: params.h:100
int DeploymentHeight(BuriedDeployment dep) const
Definition: params.h:118
uint256 BIP16Exception
Definition: params.h:74
int64_t nPowTargetSpacing
Definition: params.h:103
bool fPowAllowMinDifficultyBlocks
Definition: params.h:101