aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/ui/gui.go
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-06-04 21:54:33 +0800
committerMaran <maran.hidskes@gmail.com>2014-06-04 21:54:33 +0800
commit7843390ecd52df37a28282d76be198d5456ce385 (patch)
tree42ab782f2bbd2246481d7336c424e835004064ff /ethereal/ui/gui.go
parent307fe4a3cd4ff2d3910ed992e6e98a7cd3ca6f87 (diff)
downloadgo-tangerine-7843390ecd52df37a28282d76be198d5456ce385.tar
go-tangerine-7843390ecd52df37a28282d76be198d5456ce385.tar.gz
go-tangerine-7843390ecd52df37a28282d76be198d5456ce385.tar.bz2
go-tangerine-7843390ecd52df37a28282d76be198d5456ce385.tar.lz
go-tangerine-7843390ecd52df37a28282d76be198d5456ce385.tar.xz
go-tangerine-7843390ecd52df37a28282d76be198d5456ce385.tar.zst
go-tangerine-7843390ecd52df37a28282d76be198d5456ce385.zip
Implement getStateKeyVal for JS bindings.
Gives JS the option to 'loop' over contract key/val storage
Diffstat (limited to 'ethereal/ui/gui.go')
-rw-r--r--ethereal/ui/gui.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go
index 9fc1abc28..4dda5017f 100644
--- a/ethereal/ui/gui.go
+++ b/ethereal/ui/gui.go
@@ -65,6 +65,8 @@ func (gui *Gui) Start(assetPath string) {
Init: func(p *ethpub.PBlock, obj qml.Object) { p.Number = 0; p.Hash = "" },
}, {
Init: func(p *ethpub.PTx, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
+ }, {
+ Init: func(p *ethpub.KeyVal, obj qml.Object) { p.Key = ""; p.Value = "" },
}})
ethutil.Config.SetClientString(fmt.Sprintf("/Ethereal v%s", version))