aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/helpers.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil/helpers.go')
-rw-r--r--ethutil/helpers.go1
1 files changed, 0 insertions, 1 deletions
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)