aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/ethereum.js
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-04-30 20:54:59 +0800
committerobscuren <geffobscura@gmail.com>2014-04-30 20:54:59 +0800
commitc5481b7654b8ab35b2242befc3a5b235e6d70685 (patch)
treeca9f30bdca1b1488e18d0279b014765920d4a849 /ethereal/assets/ethereum.js
parent183dbcc6a0e56bf46f6406d47134f3b88eb5eef1 (diff)
downloadgo-tangerine-c5481b7654b8ab35b2242befc3a5b235e6d70685.tar
go-tangerine-c5481b7654b8ab35b2242befc3a5b235e6d70685.tar.gz
go-tangerine-c5481b7654b8ab35b2242befc3a5b235e6d70685.tar.bz2
go-tangerine-c5481b7654b8ab35b2242befc3a5b235e6d70685.tar.lz
go-tangerine-c5481b7654b8ab35b2242befc3a5b235e6d70685.tar.xz
go-tangerine-c5481b7654b8ab35b2242befc3a5b235e6d70685.tar.zst
go-tangerine-c5481b7654b8ab35b2242befc3a5b235e6d70685.zip
getBalanceAt getStorageAt, fixed get balance api call
Diffstat (limited to 'ethereal/assets/ethereum.js')
-rw-r--r--ethereal/assets/ethereum.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/assets/ethereum.js b/ethereal/assets/ethereum.js
index 916655d5e..fd5091bd1 100644
--- a/ethereal/assets/ethereum.js
+++ b/ethereal/assets/ethereum.js
@@ -29,7 +29,7 @@ window.eth = {
postData({call: "create", args: [sec, value, gas, gasPrice, init, body]}, cb);
},
- getStorage: function(address, storageAddress, cb) {
+ getStorageAt: function(address, storageAddress, cb) {
postData({call: "getStorage", args: [address, storageAddress]}, cb);
},
@@ -37,7 +37,7 @@ window.eth = {
postData({call: "getKey"}, cb);
},
- getBalance: function(address, cb) {
+ getBalanceAt: function(address, cb) {
postData({call: "getBalance", args: [address]}, cb);
},