Commit f1d6f1bd authored by obscuren's avatar obscuren

Removed Reset

parent c95a27e3
...@@ -27,7 +27,6 @@ func Ripemd160(data []byte) []byte { ...@@ -27,7 +27,6 @@ func Ripemd160(data []byte) []byte {
func Sha3Bin(data []byte) []byte { func Sha3Bin(data []byte) []byte {
d := sha3.NewKeccak256() d := sha3.NewKeccak256()
d.Reset()
d.Write(data) d.Write(data)
return d.Sum(nil) return d.Sum(nil)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment