Merge #7962: CalculateNextWorkRequired Cleanup

c7aac2d Deprecating the remaining LogPrintf dependencies that were made obsolete in PR #7459. (21E14)
This commit is contained in:
Wladimir J. van der Laan 2016-04-28 15:33:06 +02:00
commit 20f9ecd343
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 0 additions and 2 deletions

View File

@ -64,9 +64,7 @@ unsigned int CalculateNextWorkRequired(const CBlockIndex* pindexLast, int64_t nF
// Retarget
const arith_uint256 bnPowLimit = UintToArith256(params.powLimit);
arith_uint256 bnNew;
arith_uint256 bnOld;
bnNew.SetCompact(pindexLast->nBits);
bnOld = bnNew;
bnNew *= nActualTimespan;
bnNew /= params.nPowTargetTimespan;