Skip to content

Commit 82fa89d

Browse files
author
ProjectHelixCoin
authored
increase block activation by 2000 blocks
1 parent a305f38 commit 82fa89d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ bool CheckProofOfWork(uint256 hash, unsigned int nBits)
125125
return error("CheckProofOfWork() : nBits below minimum work");
126126

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

131131
return true;

0 commit comments

Comments
 (0)