15 int64_t nFirstBlockTime,
18 int64_t nActualTimespan = pindexPrev->
GetBlockTime() - nFirstBlockTime;
31 bnNew *= nActualTimespan;
34 if (bnNew > bnPowLimit) {
61 const uint32_t nProofOfWorkLimit =
70 return nProofOfWorkLimit;
75 while (pindex->
pprev &&
77 pindex->
nBits == nProofOfWorkLimit) {
78 pindex = pindex->
pprev;
85 uint32_t nBits = pindexPrev->
nBits;
86 if (nBits == nProofOfWorkLimit) {
87 return nProofOfWorkLimit;
96 if (mtp6blocks < 12 * 3600) {
110 if (nPow > bnPowLimit) {
int64_t GetBlockTime() const
int64_t nPowTargetTimespan
CBlockIndex * pprev
pointer to the index of the predecessor of this block
uint32_t GetNextEDAWorkRequired(const CBlockIndex *pindexPrev, const CBlockHeader *pblock, const Consensus::Params ¶ms)
Compute the next required proof of work using the legacy Bitcoin difficulty adjustment + Emergency Di...
bool fPowAllowMinDifficultyBlocks
uint32_t GetCompact(bool fNegative=false) const
arith_uint256 UintToArith256(const uint256 &a)
uint256 powLimit
Proof of work parameters.
uint32_t CalculateNextWorkRequired(const CBlockIndex *pindexPrev, int64_t nFirstBlockTime, const Consensus::Params ¶ms)
Do difficulty adjustement Satoshi's way.
int64_t nPowTargetSpacing
Parameters that influence chain consensus.
256-bit unsigned big integer.
int64_t GetMedianTimePast() const
int64_t DifficultyAdjustmentInterval() const
The block chain is a tree shaped structure starting with the genesis block at the root...
arith_uint256 & SetCompact(uint32_t nCompact, bool *pfNegative=nullptr, bool *pfOverflow=nullptr)
The "compact" format is a representation of a whole number N using an unsigned 32bit number similar t...
int nHeight
height of the entry in the chain. The genesis block has height 0
CBlockIndex * GetAncestor(int height)
Efficiently find an ancestor of this block.