2014-03-10 16:46:53 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-10 16:46:53 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include "pow.h"
|
|
|
|
|
2014-12-16 15:43:03 +01:00
|
|
|
#include "arith_uint256.h"
|
2014-10-22 01:31:01 +02:00
|
|
|
#include "chain.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
#include "chainparams.h"
|
2014-11-18 22:03:02 +01:00
|
|
|
#include "primitives/block.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
#include "uint256.h"
|
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
#include <math.h>
|
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
unsigned int static KimotoGravityWell(const CBlockIndex* pindexLast, const Consensus::Params& params) {
|
2015-04-03 00:51:08 +02:00
|
|
|
const CBlockIndex *BlockLastSolved = pindexLast;
|
|
|
|
const CBlockIndex *BlockReading = pindexLast;
|
|
|
|
uint64_t PastBlocksMass = 0;
|
|
|
|
int64_t PastRateActualSeconds = 0;
|
|
|
|
int64_t PastRateTargetSeconds = 0;
|
|
|
|
double PastRateAdjustmentRatio = double(1);
|
2016-02-02 16:28:56 +01:00
|
|
|
arith_uint256 PastDifficultyAverage;
|
|
|
|
arith_uint256 PastDifficultyAveragePrev;
|
2015-04-03 00:51:08 +02:00
|
|
|
double EventHorizonDeviation;
|
|
|
|
double EventHorizonDeviationFast;
|
|
|
|
double EventHorizonDeviationSlow;
|
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
uint64_t pastSecondsMin = params.nPowTargetTimespan * 0.025;
|
|
|
|
uint64_t pastSecondsMax = params.nPowTargetTimespan * 7;
|
|
|
|
uint64_t PastBlocksMin = pastSecondsMin / params.nPowTargetSpacing;
|
|
|
|
uint64_t PastBlocksMax = pastSecondsMax / params.nPowTargetSpacing;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2019-08-06 05:08:33 +02:00
|
|
|
if (BlockLastSolved == nullptr || BlockLastSolved->nHeight == 0 || (uint64_t)BlockLastSolved->nHeight < PastBlocksMin) { return UintToArith256(params.powLimit).GetCompact(); }
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2015-05-01 19:17:14 +02:00
|
|
|
for (unsigned int i = 1; BlockReading && BlockReading->nHeight > 0; i++) {
|
|
|
|
if (PastBlocksMax > 0 && i > PastBlocksMax) { break; }
|
|
|
|
PastBlocksMass++;
|
|
|
|
|
|
|
|
PastDifficultyAverage.SetCompact(BlockReading->nBits);
|
|
|
|
if (i > 1) {
|
2016-02-02 16:28:56 +01:00
|
|
|
// handle negative arith_uint256
|
2015-05-01 19:17:14 +02:00
|
|
|
if(PastDifficultyAverage >= PastDifficultyAveragePrev)
|
|
|
|
PastDifficultyAverage = ((PastDifficultyAverage - PastDifficultyAveragePrev) / i) + PastDifficultyAveragePrev;
|
|
|
|
else
|
|
|
|
PastDifficultyAverage = PastDifficultyAveragePrev - ((PastDifficultyAveragePrev - PastDifficultyAverage) / i);
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
2015-05-01 19:17:14 +02:00
|
|
|
PastDifficultyAveragePrev = PastDifficultyAverage;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2015-05-01 19:17:14 +02:00
|
|
|
PastRateActualSeconds = BlockLastSolved->GetBlockTime() - BlockReading->GetBlockTime();
|
2016-02-02 16:28:56 +01:00
|
|
|
PastRateTargetSeconds = params.nPowTargetSpacing * PastBlocksMass;
|
2015-05-01 19:17:14 +02:00
|
|
|
PastRateAdjustmentRatio = double(1);
|
|
|
|
if (PastRateActualSeconds < 0) { PastRateActualSeconds = 0; }
|
2015-04-03 00:51:08 +02:00
|
|
|
if (PastRateActualSeconds != 0 && PastRateTargetSeconds != 0) {
|
2015-05-01 19:17:14 +02:00
|
|
|
PastRateAdjustmentRatio = double(PastRateTargetSeconds) / double(PastRateActualSeconds);
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
2015-05-01 19:17:14 +02:00
|
|
|
EventHorizonDeviation = 1 + (0.7084 * pow((double(PastBlocksMass)/double(28.2)), -1.228));
|
|
|
|
EventHorizonDeviationFast = EventHorizonDeviation;
|
|
|
|
EventHorizonDeviationSlow = 1 / EventHorizonDeviation;
|
|
|
|
|
|
|
|
if (PastBlocksMass >= PastBlocksMin) {
|
|
|
|
if ((PastRateAdjustmentRatio <= EventHorizonDeviationSlow) || (PastRateAdjustmentRatio >= EventHorizonDeviationFast))
|
|
|
|
{ assert(BlockReading); break; }
|
|
|
|
}
|
2019-08-06 05:08:33 +02:00
|
|
|
if (BlockReading->pprev == nullptr) { assert(BlockReading); break; }
|
2015-05-01 19:17:14 +02:00
|
|
|
BlockReading = BlockReading->pprev;
|
|
|
|
}
|
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
arith_uint256 bnNew(PastDifficultyAverage);
|
2015-05-01 19:17:14 +02:00
|
|
|
if (PastRateActualSeconds != 0 && PastRateTargetSeconds != 0) {
|
|
|
|
bnNew *= PastRateActualSeconds;
|
|
|
|
bnNew /= PastRateTargetSeconds;
|
|
|
|
}
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
if (bnNew > UintToArith256(params.powLimit)) {
|
|
|
|
bnNew = UintToArith256(params.powLimit);
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return bnNew.GetCompact();
|
|
|
|
}
|
|
|
|
|
2019-11-13 19:17:36 +01:00
|
|
|
unsigned int static DarkGravityWave(const CBlockIndex* pindexLast, const Consensus::Params& params) {
|
2016-01-31 14:11:16 +01:00
|
|
|
/* current difficulty formula, dash - DarkGravity v3, written by Evan Duffield - evan@dash.org */
|
2017-04-11 12:55:07 +02:00
|
|
|
const arith_uint256 bnPowLimit = UintToArith256(params.powLimit);
|
|
|
|
int64_t nPastBlocks = 24;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
// make sure we have at least (nPastBlocks + 1) blocks, otherwise just return powLimit
|
|
|
|
if (!pindexLast || pindexLast->nHeight < nPastBlocks) {
|
|
|
|
return bnPowLimit.GetCompact();
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
const CBlockIndex *pindex = pindexLast;
|
|
|
|
arith_uint256 bnPastTargetAvg;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
for (unsigned int nCountBlocks = 1; nCountBlocks <= nPastBlocks; nCountBlocks++) {
|
|
|
|
arith_uint256 bnTarget = arith_uint256().SetCompact(pindex->nBits);
|
|
|
|
if (nCountBlocks == 1) {
|
|
|
|
bnPastTargetAvg = bnTarget;
|
|
|
|
} else {
|
|
|
|
// NOTE: that's not an average really...
|
|
|
|
bnPastTargetAvg = (bnPastTargetAvg * nCountBlocks + bnTarget) / (nCountBlocks + 1);
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
if(nCountBlocks != nPastBlocks) {
|
|
|
|
assert(pindex->pprev); // should never fail
|
|
|
|
pindex = pindex->pprev;
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
arith_uint256 bnNew(bnPastTargetAvg);
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
int64_t nActualTimespan = pindexLast->GetBlockTime() - pindex->GetBlockTime();
|
|
|
|
// NOTE: is this accurate? nActualTimespan counts it for (nPastBlocks - 1) blocks only...
|
|
|
|
int64_t nTargetTimespan = nPastBlocks * params.nPowTargetSpacing;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
if (nActualTimespan < nTargetTimespan/3)
|
|
|
|
nActualTimespan = nTargetTimespan/3;
|
|
|
|
if (nActualTimespan > nTargetTimespan*3)
|
|
|
|
nActualTimespan = nTargetTimespan*3;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
|
|
|
// Retarget
|
|
|
|
bnNew *= nActualTimespan;
|
2017-04-11 12:55:07 +02:00
|
|
|
bnNew /= nTargetTimespan;
|
2015-04-03 00:51:08 +02:00
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
if (bnNew > bnPowLimit) {
|
|
|
|
bnNew = bnPowLimit;
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return bnNew.GetCompact();
|
|
|
|
}
|
|
|
|
|
2017-04-11 12:55:07 +02:00
|
|
|
unsigned int GetNextWorkRequiredBTC(const CBlockIndex* pindexLast, const CBlockHeader *pblock, const Consensus::Params& params)
|
|
|
|
{
|
2019-08-06 05:08:33 +02:00
|
|
|
assert(pindexLast != nullptr);
|
2017-04-11 12:55:07 +02:00
|
|
|
unsigned int nProofOfWorkLimit = UintToArith256(params.powLimit).GetCompact();
|
|
|
|
|
|
|
|
// Only change once per interval
|
|
|
|
if ((pindexLast->nHeight+1) % params.DifficultyAdjustmentInterval() != 0)
|
|
|
|
{
|
|
|
|
if (params.fPowAllowMinDifficultyBlocks)
|
|
|
|
{
|
|
|
|
// Special difficulty rule for testnet:
|
|
|
|
// If the new block's timestamp is more than 2* 2.5 minutes
|
|
|
|
// then allow mining of a min-difficulty block.
|
|
|
|
if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + params.nPowTargetSpacing*2)
|
|
|
|
return nProofOfWorkLimit;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Return the last non-special-min-difficulty-rules-block
|
|
|
|
const CBlockIndex* pindex = pindexLast;
|
|
|
|
while (pindex->pprev && pindex->nHeight % params.DifficultyAdjustmentInterval() != 0 && pindex->nBits == nProofOfWorkLimit)
|
|
|
|
pindex = pindex->pprev;
|
|
|
|
return pindex->nBits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pindexLast->nBits;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go back by what we want to be 1 day worth of blocks
|
|
|
|
int nHeightFirst = pindexLast->nHeight - (params.DifficultyAdjustmentInterval()-1);
|
|
|
|
assert(nHeightFirst >= 0);
|
|
|
|
const CBlockIndex* pindexFirst = pindexLast->GetAncestor(nHeightFirst);
|
|
|
|
assert(pindexFirst);
|
|
|
|
|
|
|
|
return CalculateNextWorkRequired(pindexLast, pindexFirst->GetBlockTime(), params);
|
|
|
|
}
|
|
|
|
|
2015-02-15 02:21:42 +01:00
|
|
|
unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock, const Consensus::Params& params)
|
2014-03-10 16:46:53 +01:00
|
|
|
{
|
2019-11-13 19:17:36 +01:00
|
|
|
assert(pindexLast != nullptr);
|
|
|
|
assert(pblock != nullptr);
|
|
|
|
const arith_uint256 bnPowLimit = UintToArith256(params.powLimit);
|
|
|
|
|
2018-10-25 09:16:38 +02:00
|
|
|
// this is only active on devnets
|
|
|
|
if (pindexLast->nHeight < params.nMinimumDifficultyBlocks) {
|
2019-11-13 19:17:36 +01:00
|
|
|
return bnPowLimit.GetCompact();
|
2018-10-25 09:16:38 +02:00
|
|
|
}
|
|
|
|
|
2019-11-13 19:17:36 +01:00
|
|
|
if (pindexLast->nHeight + 1 < params.nPowKGWHeight) {
|
|
|
|
return GetNextWorkRequiredBTC(pindexLast, pblock, params);
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
2019-11-13 19:17:36 +01:00
|
|
|
|
|
|
|
// Note: GetNextWorkRequiredBTC has it's own special difficulty rule,
|
|
|
|
// so we only apply this to post-BTC algos.
|
|
|
|
if (params.fPowAllowMinDifficultyBlocks) {
|
|
|
|
// recent block is more than 2 hours old
|
|
|
|
if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + 2 * 60 * 60) {
|
|
|
|
return bnPowLimit.GetCompact();
|
|
|
|
}
|
|
|
|
// recent block is more than 10 minutes old
|
|
|
|
if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + params.nPowTargetSpacing * 4) {
|
|
|
|
arith_uint256 bnNew = arith_uint256().SetCompact(pindexLast->nBits) * 10;
|
|
|
|
if (bnNew > bnPowLimit) {
|
|
|
|
return bnPowLimit.GetCompact();
|
|
|
|
}
|
|
|
|
return bnNew.GetCompact();
|
|
|
|
}
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
2019-11-13 19:17:36 +01:00
|
|
|
|
|
|
|
if (pindexLast->nHeight + 1 < params.nPowDGWHeight) {
|
|
|
|
return KimotoGravityWell(pindexLast, params);
|
2017-12-01 06:15:11 +01:00
|
|
|
}
|
2019-11-13 19:17:36 +01:00
|
|
|
|
|
|
|
return DarkGravityWave(pindexLast, params);
|
2014-03-10 16:46:53 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 16:28:56 +01:00
|
|
|
// for DIFF_BTC only!
|
2015-02-15 02:21:42 +01:00
|
|
|
unsigned int CalculateNextWorkRequired(const CBlockIndex* pindexLast, int64_t nFirstBlockTime, const Consensus::Params& params)
|
2015-02-21 13:57:44 +01:00
|
|
|
{
|
2015-10-19 14:25:29 +02:00
|
|
|
if (params.fPowNoRetargeting)
|
|
|
|
return pindexLast->nBits;
|
|
|
|
|
2014-03-10 16:46:53 +01:00
|
|
|
// Limit adjustment step
|
2015-02-21 13:57:44 +01:00
|
|
|
int64_t nActualTimespan = pindexLast->GetBlockTime() - nFirstBlockTime;
|
2015-02-15 02:21:42 +01:00
|
|
|
if (nActualTimespan < params.nPowTargetTimespan/4)
|
|
|
|
nActualTimespan = params.nPowTargetTimespan/4;
|
|
|
|
if (nActualTimespan > params.nPowTargetTimespan*4)
|
|
|
|
nActualTimespan = params.nPowTargetTimespan*4;
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
// Retarget
|
2015-03-25 20:00:32 +01:00
|
|
|
const arith_uint256 bnPowLimit = UintToArith256(params.powLimit);
|
2014-12-16 15:43:03 +01:00
|
|
|
arith_uint256 bnNew;
|
2014-03-10 16:46:53 +01:00
|
|
|
bnNew.SetCompact(pindexLast->nBits);
|
|
|
|
bnNew *= nActualTimespan;
|
2015-02-15 02:21:42 +01:00
|
|
|
bnNew /= params.nPowTargetTimespan;
|
2014-03-10 16:46:53 +01:00
|
|
|
|
2015-03-25 20:00:32 +01:00
|
|
|
if (bnNew > bnPowLimit)
|
|
|
|
bnNew = bnPowLimit;
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
return bnNew.GetCompact();
|
|
|
|
}
|
|
|
|
|
2015-02-15 02:21:42 +01:00
|
|
|
bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params& params)
|
2014-03-10 16:46:53 +01:00
|
|
|
{
|
|
|
|
bool fNegative;
|
|
|
|
bool fOverflow;
|
2014-12-16 15:43:03 +01:00
|
|
|
arith_uint256 bnTarget;
|
2014-09-04 21:23:42 +02:00
|
|
|
|
2014-03-10 16:46:53 +01:00
|
|
|
bnTarget.SetCompact(nBits, &fNegative, &fOverflow);
|
|
|
|
|
|
|
|
// Check range
|
2015-03-25 20:00:32 +01:00
|
|
|
if (fNegative || bnTarget == 0 || fOverflow || bnTarget > UintToArith256(params.powLimit))
|
2016-02-05 11:19:36 +01:00
|
|
|
return false;
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
// Check proof of work matches claimed amount
|
2014-12-16 15:43:03 +01:00
|
|
|
if (UintToArith256(hash) > bnTarget)
|
2016-02-05 11:19:36 +01:00
|
|
|
return false;
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|