diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-10 04:18:34 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-10 04:18:34 +0800 |
commit | 8c7b764d47ce55ba6abe437ae8232cc537c4e0d9 (patch) | |
tree | 457d45ca33e58388b431500d1e2208bd5be47c73 /vm/vm_debug.go | |
parent | 905b8cc82f3dc29131f45ccf29bd1d6c967fe132 (diff) | |
download | go-tangerine-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar go-tangerine-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar.gz go-tangerine-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar.bz2 go-tangerine-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar.lz go-tangerine-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar.xz go-tangerine-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.tar.zst go-tangerine-8c7b764d47ce55ba6abe437ae8232cc537c4e0d9.zip |
updated tests
Diffstat (limited to 'vm/vm_debug.go')
-rw-r--r-- | vm/vm_debug.go | 2 |
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) |