diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-17 03:30:50 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-17 03:30:50 +0800 |
commit | f1d6f1bd1793767a5596d4c277651e2264c1cf8e (patch) | |
tree | 7f87403b166d10dcc5b697b7055cca9785deb854 /ethutil | |
parent | c95a27e39485eeeebd8608537115a4fd246c246c (diff) | |
download | dexon-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar.gz dexon-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.tar.zst dexon-f1d6f1bd1793767a5596d4c277651e2264c1cf8e.zip |
Removed Reset
Diffstat (limited to 'ethutil')
-rw-r--r-- | ethutil/helpers.go | 1 |
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) |