以太坊私有链与Ethereum Wallet启动问题

在私有链的情况下,要开启Ethereum Wallet,首先要开启本地的私有链geth,否则会出现如下问题:


解决方案:

开启以太坊私有链:

./private_blockchain.sh

private_blockchain.sh的实现如下。以下脚本要注意是否包含中文字符。

geth --rpc --rpcapi="db,eth,net,web3,personal,web3" --rpcaddr="0.0.0.0" --rpccorsdomain="*" --unlock '0' --password ~/Library/Ethereum/password   --nodiscover --maxpeers '5' --networkid '1234574' --datadir '~/Library/Ethereum'  console

在上面geth开启私有链后,就可以打开Ethereum Wallet了

猜你喜欢

转载自blog.csdn.net/CHENYUFENG1991/article/details/81259455