aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-01-29 02:19:49 +0800
committerGav Wood <i@gavwood.com>2015-01-29 02:19:49 +0800
commite1c0862658ca80d2a4a85bd15eab38b0482fee1b (patch)
treeb42888c3888baf6af0033fc7edc84ff724c4c31d /example
parent42a25f2f26f14a0b0ecfca31b5000f7a1d50240a (diff)
downloadgo-tangerine-e1c0862658ca80d2a4a85bd15eab38b0482fee1b.tar.gz
go-tangerine-e1c0862658ca80d2a4a85bd15eab38b0482fee1b.tar.zst
go-tangerine-e1c0862658ca80d2a4a85bd15eab38b0482fee1b.zip
Fix for API.
Diffstat (limited to 'example')
-rw-r--r--example/balance.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/balance.html b/example/balance.html
index 88f55315a..2d21e2720 100644
--- a/example/balance.html
+++ b/example/balance.html
@@ -17,7 +17,7 @@
var originalBalance = web3.toDecimal(balance);
document.getElementById('original').innerText = 'original balance: ' + originalBalance + ' watching...';
- web3.eth.watch({altered: coinbase}).changed(function() {
+ web3.eth.watch('pending').changed(function() {
balance = web3.eth.balanceAt(coinbase)
var currentBalance = web3.toDecimal(balance);
document.getElementById("current").innerText = 'current: ' + currentBalance;