aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/ethereum.js
diff options
context:
space:
mode:
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);
},