Skip to content

Commit

Permalink
Accurate POW block counting
Browse files Browse the repository at this point in the history
  • Loading branch information
miketout committed May 21, 2018
1 parent 12b3841 commit 30ceed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ uint32_t lwmaGetNextPOSRequired(const CBlockIndex* pindexLast, const Consensus::
if (x)
{
idx[i].consecutive = false;
idx[i].solveTime = VERUS_BLOCK_POSUNITS * x;
idx[i].solveTime = VERUS_BLOCK_POSUNITS * (x + 1);
idx[i].nBits = nBits;
}
else
Expand Down

0 comments on commit 30ceed2

Please sign in to comment.