From 8f1b461228a8e1cf81762c81037f879300f4989e Mon Sep 17 00:00:00 2001 From: obscuren Date: Fri, 15 Aug 2014 16:26:49 +0200 Subject: [PATCH] Corrected getEachStorageAt --- ethereal/assets/ext/test.html | 7 +++++-- ethereal/assets/qml/webapp.qml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ethereal/assets/ext/test.html b/ethereal/assets/ext/test.html index 980001f90..629e98377 100644 --- a/ethereal/assets/ext/test.html +++ b/ethereal/assets/ext/test.html @@ -12,6 +12,7 @@ function test() { var filter = eth.watch({ latest: -1, from: "e6716f9544a56c530d868e4bfbacb172315bdead", + altered: ["aabb", {id: "eeff", "at": "aabb"}], }); filter.changed(function(messages) { @@ -22,8 +23,10 @@ function test() { console.log("getMessages", messages) }); - eth.getEachStorageAt("9ef0f0d81e040012600b0c1abdef7c48f720f88a", function(a, b) { - console.log(a,b) + eth.getEachStorageAt("9ef0f0d81e040012600b0c1abdef7c48f720f88a", function(entries) { + for(var i = 0; i < entries.length; i++) { + console.log(entries[i].key, " : ", entries[i].value) + } }) eth.getBlock("f70097659f329a09642a27f11338d9269de64f1d4485786e36bfc410832148cd", function(block) { 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