Renamed Sha3Bin to Sha3

This commit is contained in:
obscuren
2014-10-08 12:06:39 +02:00
parent f3196c915a
commit 9d86a49a73
10 changed files with 22 additions and 20 deletions
+1 -1
View File
@@ -490,7 +490,7 @@ func (self *Vm) RunClosure(closure *Closure) (ret []byte, err error) {
case SHA3:
require(2)
size, offset := stack.Popn()
data := ethcrypto.Sha3Bin(mem.Get(offset.Int64(), size.Int64()))
data := ethcrypto.Sha3(mem.Get(offset.Int64(), size.Int64()))
stack.Push(ethutil.BigD(data))