4

I created an ethereum address

geth account new

and sent some ethers to it. Then I ran the server:

geth

and the JavaScript console:

geth attach

I checked the balance, but it was 0:

> eth.getBalance('0xB97168a67AB66E55B98B1439222Ee665E657fFc0')
0

When I checked the balance via etherchain, there were some ethers.

What am I doing wrong?

4

2 回答 2

2

可能不允许您参与公共以太坊网络,因为您的本地时间可能不正确(如果您离开 12 秒,它可能已经导致问题!)或者因为您的防火墙配置。查看这些常见的连接问题以获取更多信息。这可能会导致区块链根本没有下载到您的计算机上,从而导致您的余额为 0。

通过在 JavaScript 控制台中键入可以轻松找出是否是此问题net.peerCount,如果为 0,则表示存在连接问题。

于 2016-03-24T21:33:21.260 回答
2

可能是您的节点尚未下载区块链中的最新块,其中一个包含您的交易。请参阅:通过 geth 检查时,我的以太坊余额返回 0,但根据 etherchain,它有一个值以获取更多详细信息。

于 2017-12-06T15:23:58.167 回答