[NOD-635] Change testnet maximum difficulty (#582)

This commit is contained in:
Ori Newman 2020-01-09 18:10:23 +02:00 committed by stasatdaglabs
parent b282734a3f
commit 427185b6a8

View File

@ -34,8 +34,8 @@ var (
regressionPowMax = new(big.Int).Sub(new(big.Int).Lsh(bigOne, 255), bigOne)
// testnetPowMax is the highest proof of work value a Kaspa block
// can have for the test network. It is the value 2^255 - 1.
testnetPowMax = new(big.Int).Sub(new(big.Int).Lsh(bigOne, 255), bigOne)
// can have for the test network. It is the value 2^239 - 1.
testnetPowMax = new(big.Int).Sub(new(big.Int).Lsh(bigOne, 239), bigOne)
// simnetPowMax is the highest proof of work value a Kaspa block
// can have for the simulation test network. It is the value 2^255 - 1.