aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-17 03:30:50 +0800
committerobscuren <geffobscura@gmail.com>2014-02-17 03:30:50 +0800
commitf1d6f1bd1793767a5596d4c277651e2264c1cf8e (patch)
tree7f87403b166d10dcc5b697b7055cca9785deb854 /ethutil
parentc95a27e39485eeeebd8608537115a4fd246c246c (diff)
downloadgo-tangerine-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar
go-tangerine-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar.gz
go-tangerine-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar.bz2
go-tangerine-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar.lz
go-tangerine-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar.xz
go-tangerine-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar.zst
go-tangerine-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.zip
Removed Reset
Diffstat (limited to 'ethutil')
-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)