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

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

以太坊私有链与Ethereum Wallet启动问题_第1张图片

 


解决方案:

开启以太坊私有链:

./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

 

以太坊私有链与Ethereum Wallet启动问题_第2张图片

 

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

以太坊私有链与Ethereum Wallet启动问题_第3张图片

你可能感兴趣的:(区块链,区块链开发技术分享)