remove debugging variable bnOld in retarget algorithm, clean up white spaces

This commit is contained in:
Kay Kurokawa 2018-04-02 11:33:13 -04:00 committed by Umpei Kay Kurokawa
parent d26db867dd
commit 172f6aca32

View file

@ -1,6 +1,7 @@
#include "lbry.h"
#include "uint256.h"
#include "lbry.h"
#include "uint256.h"
#include <cstdio>
unsigned int CalculateLbryNextWorkRequired(const CBlockIndex* pindexLast, int64_t nFirstBlockTime, const Consensus::Params& params)
{
if (params.fPowNoRetargeting)
@ -26,9 +27,7 @@ unsigned int CalculateLbryNextWorkRequired(const CBlockIndex* pindexLast, int64_
// Retarget
const arith_uint256 bnPowLimit = UintToArith256(params.powLimit);
arith_uint256 bnNew;
arith_uint256 bnOld;
bnNew.SetCompact(pindexLast->nBits);
bnOld = bnNew;
bnNew *= nModulatedTimespan;
bnNew /= retargetTimespan;
if (bnNew > bnPowLimit)