Correct reg test proof of work limit comment.

This commit is contained in:
Dave Collins 2013-07-31 09:20:11 -05:00
parent 72feef5194
commit 455c92a716

View File

@ -42,7 +42,7 @@ var mainNetParams = Params{
} }
// regressionPowLimit is the highest proof of work value a bitcoin block can // regressionPowLimit is the highest proof of work value a bitcoin block can
// have for the regression test network. It is the value 2^256 - 1. // have for the regression test network. It is the value 2^255 - 1.
var regressionPowLimit = new(big.Int).Sub(new(big.Int).Lsh(bigOne, 255), bigOne) var regressionPowLimit = new(big.Int).Sub(new(big.Int).Lsh(bigOne, 255), bigOne)
// regressionParams contains parameters specific to the regression test network // regressionParams contains parameters specific to the regression test network