From 6426f3635eddaa1477e643886fd3c0eaf1fa6158 Mon Sep 17 00:00:00 2001 From: obscuren Date: Sun, 13 Jul 2014 17:56:14 +0200 Subject: [PATCH] Forgot to return gas when CALL's value transfer fails --- ethchain/vm.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ethchain/vm.go b/ethchain/vm.go index f7ce8c2ce..f1794ff77 100644 --- a/ethchain/vm.go +++ b/ethchain/vm.go @@ -550,8 +550,10 @@ func (vm *Vm) RunClosure(closure *Closure) (ret []byte, err error) { } code := closure.Script[cOff : cOff+l] + fmt.Println("len:", l, "code off:", cOff, "mem off:", mOff) mem.Set(mOff, l, code) + fmt.Println(Code(mem.Get(mOff, l))) case GASPRICE: stack.Push(closure.Price) @@ -741,6 +743,7 @@ func (vm *Vm) RunClosure(closure *Closure) (ret []byte, err error) { if closure.object.Amount.Cmp(value) < 0 { vmlogger.Debugf("Insufficient funds to transfer value. Req %v, has %v", value, closure.object.Amount) + closure.ReturnGas(gas, nil, nil) stack.Push(ethutil.BigFalse) } else {