2015-02-11 11:58:11 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
|
// 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"
|
|
|
|
|
|
|
|
namespace Consensus {
|
|
|
|
/**
|
|
|
|
* Parameters that influence chain consensus.
|
|
|
|
*/
|
|
|
|
struct Params {
|
|
|
|
uint256 hashGenesisBlock;
|
|
|
|
int nSubsidyHalvingInterval;
|
|
|
|
/** Used to check majorities for block version upgrade */
|
|
|
|
int nMajorityEnforceBlockUpgrade;
|
|
|
|
int nMajorityRejectBlockOutdated;
|
|
|
|
int nMajorityWindow;
|
|
|
|
/** Proof of work parameters */
|
2015-03-25 20:00:32 +01:00
|
|
|
uint256 powLimit;
|
2015-02-11 11:58:11 +01:00
|
|
|
bool fPowAllowMinDifficultyBlocks;
|
|
|
|
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
|