2015-02-11 11:58:11 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 17:58:29 +01:00
|
|
|
// Copyright (c) 2009-2015 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
|
|
|
|
|
|
|
#include "uint256.h"
|
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.
|
2015-11-06 01:42:38 +01:00
|
|
|
DEPLOYMENT_SEGWIT, // Deployment of BIP141 and BIP143
|
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;
|
|
|
|
};
|
|
|
|
|
2015-02-11 11:58:11 +01:00
|
|
|
/**
|
|
|
|
* Parameters that influence chain consensus.
|
|
|
|
*/
|
|
|
|
struct Params {
|
|
|
|
uint256 hashGenesisBlock;
|
|
|
|
int nSubsidyHalvingInterval;
|
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
|
|
|
/**
|
|
|
|
* Minimum blocks including miner confirmation of the total of 2016 blocks in a retargetting period,
|
|
|
|
* (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; }
|
|
|
|
};
|
|
|
|
} // namespace Consensus
|
|
|
|
|
2015-03-21 18:15:31 +01:00
|
|
|
#endif // BITCOIN_CONSENSUS_PARAMS_H
|