aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/debugger.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-21 17:55:50 +0800
committerobscuren <geffobscura@gmail.com>2014-07-21 17:55:50 +0800
commit15960a5c04c154a07d8813fcc9a6fa465d8d4500 (patch)
treeee317a556b54913473045e78cb88bebdec9e01fc /ethereal/debugger.go
parentf702e27485981562ed7b88ecd3f8485af4c61b62 (diff)
downloadgo-tangerine-15960a5c04c154a07d8813fcc9a6fa465d8d4500.tar.gz
go-tangerine-15960a5c04c154a07d8813fcc9a6fa465d8d4500.tar.zst
go-tangerine-15960a5c04c154a07d8813fcc9a6fa465d8d4500.zip
changed iterator
Diffstat (limited to 'ethereal/debugger.go')
-rw-r--r--ethereal/debugger.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/debugger.go b/ethereal/debugger.go
index 7742b1627..17087f8ce 100644
--- a/ethereal/debugger.go
+++ b/ethereal/debugger.go
@@ -289,7 +289,7 @@ func (d *Debugger) halting(pc int, op ethchain.OpCode, mem *ethchain.Memory, sta
d.win.Root().Call("setStack", val.String())
}
- stateObject.State().EachStorage(func(key string, node *ethutil.Value) {
+ stateObject.EachStorage(func(key string, node *ethutil.Value) {
d.win.Root().Call("setStorage", storeVal{fmt.Sprintf("% x", key), fmt.Sprintf("% x", node.Str())})
})