2014-03-10 16:46:53 +01:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include "pow.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"
|
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
|
|
|
|
|
|
|
unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock)
|
|
|
|
{
|
|
|
|
unsigned int nProofOfWorkLimit = Params().ProofOfWorkLimit().GetCompact();
|
|
|
|
|
|
|
|
// Genesis block
|
|
|
|
if (pindexLast == NULL)
|
|
|
|
return nProofOfWorkLimit;
|
|
|
|
|
|
|
|
// Only change once per interval
|
2014-03-22 18:29:34 +01:00
|
|
|
if ((pindexLast->nHeight+1) % Params().Interval() != 0)
|
2014-03-10 16:46:53 +01:00
|
|
|
{
|
|
|
|
if (Params().AllowMinDifficultyBlocks())
|
|
|
|
{
|
|
|
|
// 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.
|
2014-06-28 23:36:06 +02:00
|
|
|
if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + Params().TargetSpacing()*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;
|
2014-03-22 18:29:34 +01:00
|
|
|
while (pindex->pprev && pindex->nHeight % Params().Interval() != 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
|
|
|
|
const CBlockIndex* pindexFirst = pindexLast;
|
2014-03-22 18:29:34 +01:00
|
|
|
for (int i = 0; pindexFirst && i < Params().Interval()-1; i++)
|
2014-03-10 16:46:53 +01:00
|
|
|
pindexFirst = pindexFirst->pprev;
|
|
|
|
assert(pindexFirst);
|
|
|
|
|
|
|
|
// Limit adjustment step
|
|
|
|
int64_t nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
|
|
|
|
LogPrintf(" nActualTimespan = %d before bounds\n", nActualTimespan);
|
2014-03-22 18:29:34 +01:00
|
|
|
if (nActualTimespan < Params().TargetTimespan()/4)
|
|
|
|
nActualTimespan = Params().TargetTimespan()/4;
|
|
|
|
if (nActualTimespan > Params().TargetTimespan()*4)
|
|
|
|
nActualTimespan = Params().TargetTimespan()*4;
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
// Retarget
|
|
|
|
uint256 bnNew;
|
|
|
|
uint256 bnOld;
|
|
|
|
bnNew.SetCompact(pindexLast->nBits);
|
|
|
|
bnOld = bnNew;
|
|
|
|
bnNew *= nActualTimespan;
|
2014-03-22 18:29:34 +01:00
|
|
|
bnNew /= Params().TargetTimespan();
|
2014-03-10 16:46:53 +01:00
|
|
|
|
|
|
|
if (bnNew > Params().ProofOfWorkLimit())
|
|
|
|
bnNew = Params().ProofOfWorkLimit();
|
|
|
|
|
|
|
|
/// debug print
|
|
|
|
LogPrintf("GetNextWorkRequired RETARGET\n");
|
2014-03-22 18:29:34 +01:00
|
|
|
LogPrintf("Params().TargetTimespan() = %d nActualTimespan = %d\n", Params().TargetTimespan(), 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();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CheckProofOfWork(uint256 hash, unsigned int nBits)
|
|
|
|
{
|
|
|
|
bool fNegative;
|
|
|
|
bool fOverflow;
|
|
|
|
uint256 bnTarget;
|
2014-09-04 21:23:42 +02:00
|
|
|
|
|
|
|
if (Params().SkipProofOfWorkCheck())
|
|
|
|
return true;
|
|
|
|
|
2014-03-10 16:46:53 +01:00
|
|
|
bnTarget.SetCompact(nBits, &fNegative, &fOverflow);
|
|
|
|
|
|
|
|
// Check range
|
|
|
|
if (fNegative || bnTarget == 0 || fOverflow || bnTarget > Params().ProofOfWorkLimit())
|
|
|
|
return error("CheckProofOfWork() : nBits below minimum work");
|
|
|
|
|
|
|
|
// Check proof of work matches claimed amount
|
|
|
|
if (hash > bnTarget)
|
|
|
|
return error("CheckProofOfWork() : hash doesn't match nBits");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-29 17:00:02 +01:00
|
|
|
uint256 GetBlockProof(const CBlockIndex& block)
|
2014-07-05 12:05:33 +02:00
|
|
|
{
|
|
|
|
uint256 bnTarget;
|
|
|
|
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
|
|
|
|
// as it's too large for a uint256. However, as 2**256 is at least as large
|
|
|
|
// 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
|
|
|
}
|