diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-15 07:07:40 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-15 07:07:40 +0800 |
commit | c362172567e7bd499ea0d0bcf84c54a9b7788614 (patch) | |
tree | e1b15a860e6c2a286d441ef1e69bdfd0f0b64efb /ethereal/assets/ext/ethereum.js | |
parent | aadc5be3ff9e3818e41d83910b9730e5f1af042e (diff) | |
download | go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.gz go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.bz2 go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.lz go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.xz go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.tar.zst go-tangerine-c362172567e7bd499ea0d0bcf84c54a9b7788614.zip |
Got rid of warnings and updated storage getters
Diffstat (limited to 'ethereal/assets/ext/ethereum.js')
-rw-r--r-- | ethereal/assets/ext/ethereum.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ethereal/assets/ext/ethereum.js b/ethereal/assets/ext/ethereum.js index 5891fb9f9..03b25179b 100644 --- a/ethereal/assets/ext/ethereum.js +++ b/ethereal/assets/ext/ethereum.js @@ -1,6 +1,8 @@ // Main Ethereum library window.eth = { prototype: Object(), + _callbacks: {}, + _onCallbacks: {}, mutan: function(code) { }, @@ -103,8 +105,8 @@ window.eth = { postData({call: "getStorage", args: [address, storageAddress]}, cb); }, - getStateKeyVals: function(address, cb){ - postData({call: "getStateKeyVals", args: [address]}, cb); + getEachStorageAt: function(address, cb){ + postData({call: "getEachStorage", args: [address]}, cb); }, getKey: function(cb) { @@ -221,17 +223,15 @@ window.eth = { }, } -window.eth._callbacks = {} -window.eth._onCallbacks = {} var Filter = function(options) { this.options = options; }; - Filter.prototype.changed = function(callback) { + // Register the watched:<number>. Qml will call the appropriate event if anything + // interesting happens in the land of Go. eth.on("watched:"+this.number, callback) } - Filter.prototype.getMessages = function(cb) { return eth.getMessages(this.options, cb) } |