2

I am starting to learn ethereum. I have downloaded the Ethereum Wallet, created two accounts and using Rinkeby faucet I got 3 ethers in one of the account. I can see the balance in my wallet. I then ran geth --testnet --datadir d:\data and it started syncing. I let it run for a day and now it slowly adds new blocks. I started another get console and attached it to get.ipc. On the console, I did:

eth.accounts

I see both the accounts in my wallet with first account set as coinbase. But when I ran

eth.getBalance(accounts[0])

I get 0 balance. What might be something I might have overlooked? Thanks in advance

Shane Fontaine
  • 2,431
  • 3
  • 13
  • 23
unni
  • 63
  • 8

2 Answers2

1

connect to Rinkeby faucet using metamask chrome extension. Provide your account details there you can check that you received ether or not.

0

It will show you the balance once it has completed syncing. For me it took more than one day to sync, then I could see the account balance properly.

Try eth.syncing to check the status and if eth.blockNumber gives 0 as output that means syncing hasn't finished yet.