I am developing ethereum wallet api.
For now, I want to get the balance for specific address by using eth.getBalace()
.
I run testnet following
alias geth = 'geth --ipcpath /home/tom/.ethereum/testnet/geth.ipc'
geth console
At this time, I can see the eth.syncing
is true
.
And I sent 3 ether in http://faucet.ropsten.be:3001/.
But I can get balace by using eth.getBalance()
method.
When I check the http://etherscan.io, there is success status. And it is also showing in http://myetherwallet.com.
How can I get balance in my local?