mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
4 lines
171 B
JavaScript
4 lines
171 B
JavaScript
console.log("Checking balances...")
|
|
for(i = 0; i < web3.eth.accounts.length; i++){
|
|
console.log(web3.eth.accounts[i] + ":" + web3.eth.getBalance(web3.eth.accounts[i]))
|
|
}
|