本文介绍了通过geth检查时,我的以太坊余额似乎为0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个以太坊地址

I created an ethereum address

geth account new

并向其中发送了一些乙醚。然后我运行服务器:

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

geth

和JavaScript控制台:

and the JavaScript console:

geth attach

我检查了余额,但余额为0:

I checked the balance, but it was 0:

> eth.getBalance('0xB97168a67AB66E55B98B1439222Ee665E657fFc0')
0

通过,其中有一些以太。

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

我在做什么

推荐答案

由于您的本地时间可能不正确,因此您可能不被允许加入公共以太坊网络(如果您在12秒钟后关机,则可能已经引起问题!)或由于您的防火墙配置。检查这些有关更多信息。这可能会导致区块链根本没有下载到您的计算机上,从而导致您的余额为0。

It is possible that you are not allowed to participate in the public ethereum network, because your local time might be incorrect (if you are off by 12 seconds it can cause problems already!) or because of your firewall configuration. Check these common connectivity issues for more information. This might cause that the blockchain is not downloaded to your computer at all, which causes that your balance is 0.

一个人可以通过键入以下内容轻松找出问题所在JavaScript控制台中的 net.peerCount ,如果为0,则存在连接问题。

One can easily find out whether this is the issue by typing net.peerCount in the JavaScript console, if it is 0, there is a connectivity problem.

这篇关于通过geth检查时,我的以太坊余额似乎为0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 02:35
查看更多