aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-12 20:26:01 +0800
committerobscuren <geffobscura@gmail.com>2014-12-12 20:26:01 +0800
commit05fd1dafe2c90d2acec4c2ea8619d8f656934a77 (patch)
treeb9441f2f610e5e8f9bc86cb50f98d9afea9a6ffa /vm
parent0d57ca486a4db9f2488df5f6be47eb9b09df2004 (diff)
downloadgo-tangerine-05fd1dafe2c90d2acec4c2ea8619d8f656934a77.tar
go-tangerine-05fd1dafe2c90d2acec4c2ea8619d8f656934a77.tar.gz
go-tangerine-05fd1dafe2c90d2acec4c2ea8619d8f656934a77.tar.bz2
go-tangerine-05fd1dafe2c90d2acec4c2ea8619d8f656934a77.tar.lz
go-tangerine-05fd1dafe2c90d2acec4c2ea8619d8f656934a77.tar.xz
go-tangerine-05fd1dafe2c90d2acec4c2ea8619d8f656934a77.tar.zst
go-tangerine-05fd1dafe2c90d2acec4c2ea8619d8f656934a77.zip
additional log
Diffstat (limited to 'vm')
-rw-r--r--vm/common.go2
-rw-r--r--vm/vm_debug.go5
2 files changed, 3 insertions, 4 deletions
diff --git a/vm/common.go b/vm/common.go
index 592d44ccd..3d6d377ca 100644
--- a/vm/common.go
+++ b/vm/common.go
@@ -48,7 +48,7 @@ var (
S256 = ethutil.S256
)
-const MaxCallDepth = 1025
+const MaxCallDepth = 1024
func calcMemSize(off, l *big.Int) *big.Int {
if l.Cmp(ethutil.Big0) == 0 {
diff --git a/vm/vm_debug.go b/vm/vm_debug.go
index e9139ae19..8af1979b1 100644
--- a/vm/vm_debug.go
+++ b/vm/vm_debug.go
@@ -49,8 +49,7 @@ func (self *DebugVm) Run(me, caller ClosureRef, code []byte, value, gas, price *
closure := NewClosure(msg, caller, me, code, gas, price)
if self.env.Depth() == MaxCallDepth {
- closure.UseGas(gas)
-
+ //closure.UseGas(gas)
return closure.Return(nil), DepthError{}
}
@@ -885,7 +884,7 @@ func (self *DebugVm) Run(me, caller ClosureRef, code []byte, value, gas, price *
mem.Set(retOffset.Uint64(), retSize.Uint64(), ret)
}
- self.Printf("resume %x", closure.Address())
+ self.Printf("resume %x (%v)", closure.Address(), closure.Gas)
// Debug hook
if self.Dbg != nil {