diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-15 22:26:49 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-15 22:26:49 +0800 |
commit | 8f1b461228a8e1cf81762c81037f879300f4989e (patch) | |
tree | b42e389ba761aba142ed35e0dffa26efa69f4c6b /ethereal/assets/qml/webapp.qml | |
parent | c2c8757bd1e6c03254ca5888077b25a8902cfa0e (diff) | |
download | go-tangerine-8f1b461228a8e1cf81762c81037f879300f4989e.tar go-tangerine-8f1b461228a8e1cf81762c81037f879300f4989e.tar.gz go-tangerine-8f1b461228a8e1cf81762c81037f879300f4989e.tar.bz2 go-tangerine-8f1b461228a8e1cf81762c81037f879300f4989e.tar.lz go-tangerine-8f1b461228a8e1cf81762c81037f879300f4989e.tar.xz go-tangerine-8f1b461228a8e1cf81762c81037f879300f4989e.tar.zst go-tangerine-8f1b461228a8e1cf81762c81037f879300f4989e.zip |
Corrected getEachStorageAt
Diffstat (limited to 'ethereal/assets/qml/webapp.qml')
-rw-r--r-- | ethereal/assets/qml/webapp.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/assets/qml/webapp.qml b/ethereal/assets/qml/webapp.qml index 7bcdc1610..e6d0f5c14 100644 --- a/ethereal/assets/qml/webapp.qml +++ b/ethereal/assets/qml/webapp.qml @@ -195,7 +195,7 @@ ApplicationWindow { case "getEachStorage": require(1); - var storage = eth.getEachStorage(data.args[0]) + var storage = JSON.parse(eth.getEachStorage(data.args[0])) postData(data._seed, storage) break |