From f1d6f1bd1793767a5596d4c277651e2264c1cf8e Mon Sep 17 00:00:00 2001 From: obscuren Date: Sun, 16 Feb 2014 20:30:50 +0100 Subject: [PATCH] Removed Reset --- ethutil/helpers.go | 1 - 1 file changed, 1 deletion(-) diff --git a/ethutil/helpers.go b/ethutil/helpers.go index 1c6adf256..2e3aeb9a3 100644 --- a/ethutil/helpers.go +++ b/ethutil/helpers.go @@ -27,7 +27,6 @@ func Ripemd160(data []byte) []byte { func Sha3Bin(data []byte) []byte { d := sha3.NewKeccak256() - d.Reset() d.Write(data) return d.Sum(nil)