Skip to content

Commit

Permalink
increase block activation by 2000 blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectHelixCoin committed Oct 2, 2018
1 parent a305f38 commit 82fa89d
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 @@ -125,7 +125,7 @@ bool CheckProofOfWork(uint256 hash, unsigned int nBits)
return error("CheckProofOfWork() : nBits below minimum work");

// Check proof of work matches claimed amount
if (chainActive.Height() >= 43000 && hash > bnTarget)
if (chainActive.Height() >= 45000 && hash > bnTarget)
return error("CheckProofOfWork() : hash doesn't match nBits");

return true;
Expand Down

0 comments on commit 82fa89d

Please sign in to comment.