From ab18edbedc12f141a803af3a241c67d24cc9e518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Wed, 2 Nov 2016 13:42:39 +0200 Subject: [PATCH] Update exp.go --- common/math/exp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/math/exp.go b/common/math/exp.go index ebb375be61..bd6eeb0318 100644 --- a/common/math/exp.go +++ b/common/math/exp.go @@ -6,7 +6,7 @@ import ( "github.com/ethereum/go-ethereum/common" ) -// wordSize is the size number of bytes in a big.Int Word. +// wordSize is the size number of bits in a big.Int Word. const wordSize = 32 << (uint64(^big.Word(0))>>63) // Exp implement exponentiation by squaring algorithm.