Browse Source

Deprecating the remaining LogPrintf dependencies that were made obsolete in PR #7459.

0.13
21E14 9 years ago
parent
commit
c7aac2d557
  1. 2
      src/pow.cpp

2
src/pow.cpp

@ -64,9 +64,7 @@ unsigned int CalculateNextWorkRequired(const CBlockIndex* pindexLast, int64_t nF @@ -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;

Loading…
Cancel
Save