aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vm_debug.go
diff options
context:
space:
mode:
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)