aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/vm.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/ethchain/vm.go b/ethchain/vm.go
index 7acca9b36..cd7516db7 100644
--- a/ethchain/vm.go
+++ b/ethchain/vm.go
@@ -688,7 +688,6 @@ func (vm *Vm) RunClosure(closure *Closure) (ret []byte, err error) {
// Create a new callable closure
closure := NewClosure(closure, stateObject, stateObject.script, vm.state, gas, closure.Price)
// Executer the closure and get the return value (if any)
- //ret, _, err := closure.Call(vm, args, hook)
ret, err, _ := Call(vm, closure, args)
if err != nil {
stack.Push(ethutil.BigFalse)