2014-03-10 16:46:53 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2014 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-11-18 22:03:02 +01:00
|
|
|
#include "primitives/block.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
#include "uint256.h"
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include "util.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
|
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
|
|
|
{
|
2015-03-25 20:00:32 +01:00
|
|
|
unsigned int nProofOfWorkLimit = UintToArith256(params.powLimit).GetCompact();
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
// Genesis block
|
|
|
|
if (pindexLast == NULL)
|
|
|
|
return nProofOfWorkLimit;
|
|
|
|
|
2015-02-17 14:46:51 +01:00
|
|
|
// Only change once per difficulty adjustment interval
|
2015-02-15 02:21:42 +01:00
|
|
|
if ((pindexLast->nHeight+1) % params.DifficultyAdjustmentInterval() != 0)
|
2014-03-10 16:46:53 +01:00
|
|
|
{
|
2015-02-15 02:21:42 +01:00
|
|
|
if (params.fPowAllowMinDifficultyBlocks)
|
2014-03-10 16:46:53 +01:00
|
|
|
{
|
|
|
|
// Special difficulty rule for testnet:
|
|
|
|
// If the new block's timestamp is more than 2* 10 minutes
|
|
|
|
// then allow mining of a min-difficulty block.
|
2015-02-15 02:21:42 +01:00
|
|
|
if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + params.nPowTargetSpacing*2)
|
2014-03-10 16:46:53 +01:00
|
|
|
return nProofOfWorkLimit;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Return the last non-special-min-difficulty-rules-block
|
|
|
|
const CBlockIndex* pindex = pindexLast;
|
2015-02-15 02:21:42 +01:00
|
|
|
while (pindex->pprev && pindex->nHeight % params.DifficultyAdjustmentInterval() != 0 && pindex->nBits == nProofOfWorkLimit)
|
2014-03-10 16:46:53 +01:00
|
|
|
pindex = pindex->pprev;
|
|
|
|
return pindex->nBits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pindexLast->nBits;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go back by what we want to be 14 days worth of blocks
|
2015-03-26 19:06:27 +01:00
|
|
|
int nHeightFirst = pindexLast->nHeight - (params.DifficultyAdjustmentInterval()-1);
|
|
|
|
assert(nHeightFirst >= 0);
|
|
|
|
const CBlockIndex* pindexFirst = pindexLast->GetAncestor(nHeightFirst);
|
2014-03-10 16:46:53 +01:00
|
|
|
assert(pindexFirst);
|
|
|
|
|
2015-02-15 02:21:42 +01:00
|
|
|
return CalculateNextWorkRequired(pindexLast, pindexFirst->GetBlockTime(), params);
|
2015-02-21 13:57:44 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
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;
|
2014-03-10 16:46:53 +01:00
|
|
|
LogPrintf(" nActualTimespan = %d before bounds\n", nActualTimespan);
|
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;
|
|
|
|
arith_uint256 bnOld;
|
2014-03-10 16:46:53 +01:00
|
|
|
bnNew.SetCompact(pindexLast->nBits);
|
|
|
|
bnOld = bnNew;
|
|
|
|
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
|
|
|
|
|
|
|
/// debug print
|
|
|
|
LogPrintf("GetNextWorkRequired RETARGET\n");
|
2015-02-15 02:21:42 +01:00
|
|
|
LogPrintf("params.nPowTargetTimespan = %d nActualTimespan = %d\n", params.nPowTargetTimespan, nActualTimespan);
|
2014-03-10 16:46:53 +01:00
|
|
|
LogPrintf("Before: %08x %s\n", pindexLast->nBits, bnOld.ToString());
|
|
|
|
LogPrintf("After: %08x %s\n", bnNew.GetCompact(), bnNew.ToString());
|
|
|
|
|
|
|
|
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))
|
2015-01-08 11:44:25 +01:00
|
|
|
return error("CheckProofOfWork(): nBits below minimum work");
|
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)
|
2015-01-08 11:44:25 +01:00
|
|
|
return error("CheckProofOfWork(): hash doesn't match nBits");
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-16 15:43:03 +01:00
|
|
|
arith_uint256 GetBlockProof(const CBlockIndex& block)
|
2014-07-05 12:05:33 +02:00
|
|
|
{
|
2014-12-16 15:43:03 +01:00
|
|
|
arith_uint256 bnTarget;
|
2014-07-05 12:05:33 +02:00
|
|
|
bool fNegative;
|
|
|
|
bool fOverflow;
|
2014-10-29 17:00:02 +01:00
|
|
|
bnTarget.SetCompact(block.nBits, &fNegative, &fOverflow);
|
2014-07-05 12:05:33 +02:00
|
|
|
if (fNegative || fOverflow || bnTarget == 0)
|
|
|
|
return 0;
|
|
|
|
// We need to compute 2**256 / (bnTarget+1), but we can't represent 2**256
|
2014-12-16 15:43:03 +01:00
|
|
|
// as it's too large for a arith_uint256. However, as 2**256 is at least as large
|
2014-07-05 12:05:33 +02:00
|
|
|
// as bnTarget+1, it is equal to ((2**256 - bnTarget - 1) / (bnTarget+1)) + 1,
|
|
|
|
// or ~bnTarget / (nTarget+1) + 1.
|
|
|
|
return (~bnTarget / (bnTarget + 1)) + 1;
|
2014-03-10 16:46:53 +01:00
|
|
|
}
|
2015-03-17 14:35:59 +01:00
|
|
|
|
|
|
|
int64_t GetBlockProofEquivalentTime(const CBlockIndex& to, const CBlockIndex& from, const CBlockIndex& tip, const Consensus::Params& params)
|
|
|
|
{
|
|
|
|
arith_uint256 r;
|
|
|
|
int sign = 1;
|
|
|
|
if (to.nChainWork > from.nChainWork) {
|
|
|
|
r = to.nChainWork - from.nChainWork;
|
|
|
|
} else {
|
|
|
|
r = from.nChainWork - to.nChainWork;
|
|
|
|
sign = -1;
|
|
|
|
}
|
|
|
|
r = r * arith_uint256(params.nPowTargetSpacing) / GetBlockProof(tip);
|
|
|
|
if (r.bits() > 63) {
|
|
|
|
return sign * std::numeric_limits<int64_t>::max();
|
|
|
|
}
|
|
|
|
return sign * r.GetLow64();
|
|
|
|
}
|