Hardfork to the previous testnet difficulty adjustment behaviour at block 43400

This hardfork will be removed the next time the testnet blockchain is reset.
This commit is contained in:
Jack Grigg 2016-07-22 13:58:13 +12:00
parent e99731b4a4
commit 9e6adb124f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead
// then allow mining of a min-difficulty block.
if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + params.nPowTargetSpacing*2)
return nProofOfWorkLimit;
else {
else if (pindexLast->nHeight >= 43400) { // TODO remove hardfork at next chain reset
// Get the last non-min-difficulty (or at worst the genesis difficulty)
while (pindexBits->pprev && pindexBits->nBits == nProofOfWorkLimit)
pindexBits = pindexBits->pprev;