From 455c92a71616795d6deec1624dc86b9b24965f8a Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 31 Jul 2013 09:20:11 -0500 Subject: [PATCH] Correct reg test proof of work limit comment. --- params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params.go b/params.go index 670f390f..685bad3e 100644 --- a/params.go +++ b/params.go @@ -42,7 +42,7 @@ var mainNetParams = Params{ } // 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) // regressionParams contains parameters specific to the regression test network