diff options
Diffstat (limited to 'vm/execution.go')
-rw-r--r-- | vm/execution.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/execution.go b/vm/execution.go index 514405215..f8a772a1d 100644 --- a/vm/execution.go +++ b/vm/execution.go @@ -69,6 +69,7 @@ func (self *Execution) exec(code, caddr []byte, caller ClosureRef) (ret []byte, if self.Gas.Cmp(p.Gas) >= 0 { ret = p.Call(self.input) self.vm.Printf("NATIVE_FUNC(%x) => %x", naddr, ret) + self.vm.Endl() } } else { // Create a new callable closure |