Commit 8f1b4612 authored by obscuren's avatar obscuren

Corrected getEachStorageAt

parent c2c8757b
...@@ -12,6 +12,7 @@ function test() { ...@@ -12,6 +12,7 @@ function test() {
var filter = eth.watch({ var filter = eth.watch({
latest: -1, latest: -1,
from: "e6716f9544a56c530d868e4bfbacb172315bdead", from: "e6716f9544a56c530d868e4bfbacb172315bdead",
altered: ["aabb", {id: "eeff", "at": "aabb"}],
}); });
filter.changed(function(messages) { filter.changed(function(messages) {
...@@ -22,8 +23,10 @@ function test() { ...@@ -22,8 +23,10 @@ function test() {
console.log("getMessages", messages) console.log("getMessages", messages)
}); });
eth.getEachStorageAt("9ef0f0d81e040012600b0c1abdef7c48f720f88a", function(a, b) { eth.getEachStorageAt("9ef0f0d81e040012600b0c1abdef7c48f720f88a", function(entries) {
console.log(a,b) for(var i = 0; i < entries.length; i++) {
console.log(entries[i].key, " : ", entries[i].value)
}
}) })
eth.getBlock("f70097659f329a09642a27f11338d9269de64f1d4485786e36bfc410832148cd", function(block) { eth.getBlock("f70097659f329a09642a27f11338d9269de64f1d4485786e36bfc410832148cd", function(block) {
......
...@@ -195,7 +195,7 @@ ApplicationWindow { ...@@ -195,7 +195,7 @@ ApplicationWindow {
case "getEachStorage": case "getEachStorage":
require(1); require(1);
var storage = eth.getEachStorage(data.args[0]) var storage = JSON.parse(eth.getEachStorage(data.args[0]))
postData(data._seed, storage) postData(data._seed, storage)
break break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment