(vm *VM)
| 23 | ) |
| 24 | |
| 25 | func opVMHash(vm *VM) { |
| 26 | f := vm.popBytes() |
| 27 | x := vm.popBytes() |
| 28 | h := VMHash(string(f), x) |
| 29 | vm.chargeCreate(Bytes(h[:])) |
| 30 | vm.push(Bytes(h[:])) |
| 31 | } |
| 32 | |
| 33 | func opSHA256(vm *VM) { |
| 34 | a := vm.popBytes() |
nothing calls this directly
no test coverage detected