mirror of https://github.com/status-im/web3.js.git
Fix for API.
This commit is contained in:
parent
42a25f2f26
commit
e1c0862658
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue