aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vm_debug.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-10 04:18:34 +0800
committerobscuren <geffobscura@gmail.com>2015-01-10 04:18:34 +0800
commit8c7b764d47ce55ba6abe437ae8232cc537c4e0d9 (patch)
tree457d45ca33e58388b431500d1e2208bd5be47c73 /vm/vm_debug.go
parent905b8cc82f3dc29131f45ccf29bd1d6c967fe132 (diff)
downloaddexon-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar.gz
dexon-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar.zst
dexon-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.zip
updated tests
Diffstat (limited to 'vm/vm_debug.go')
-rw-r--r--vm/vm_debug.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_debug.go b/vm/vm_debug.go
index 92e4154e4..04ba8190d 100644
--- a/vm/vm_debug.go
+++ b/vm/vm_debug.go
@@ -583,7 +583,7 @@ func (self *DebugVm) Run(me, caller ContextRef, code []byte, value, gas, price *
topics[i] = ethutil.LeftPadBytes(stack.Pop().Bytes(), 32)
}
- data := mem.Geti(mStart.Int64(), mSize.Int64())
+ data := mem.Get(mStart.Int64(), mSize.Int64())
log := &Log{context.Address(), topics, data}
self.env.AddLog(log)