From 72feef5194367297c39b4c66224f13fbbb4aac97 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 31 Jul 2013 09:14:02 -0500 Subject: [PATCH] Clarify 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 21d13658..670f390f 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. It is the value 2^256 - 1. +// have for the regression test network. It is the value 2^256 - 1. var regressionPowLimit = new(big.Int).Sub(new(big.Int).Lsh(bigOne, 255), bigOne) // regressionParams contains parameters specific to the regression test network