以太坊Miner.start()未在控制台上加载

时间:2018-09-21 06:06:06

标签: ethereum smartcontracts go-ethereum

以太坊Miner.start()无法在控制台上加载吗?

我没有让geth的内部控制台矿机正常工作。

这是我使用打开的选项运行节点的方式。

我正在使用“ geth attach http:127.0.0.1:8545”通过另一个geth连接到该节点。

我可以连接和使用其他api,例如eth,personal。但是矿工无法正常工作。

有人可以帮忙吗?

我非常感谢您的关注。

docker run -d --name 'Name' \
    --network ethereum \
    -v $(pwd):/root/.ethereum \
    -v $(pwd):/root/.ethash \
    -v $(pwd)/src:/opt \
    -p 8545:8545 \
    ethereum/client-go:v1.8.12  --bootnodes='...' \
    --networkid=1981 --dev --rpc --rpcaddr=0.0.0.0 --rpcport 8545 --rpcapi 'db,eth,net,web3,debug,personal,miner'  --rpccorsdomain '*' --nat=any --cache=512 --verbosity=4 --maxpeers=3

1 个答案:

答案 0 :(得分:0)

尝试将--dev.period的值设置为大于0的值,例如--dev.period 15

有关更多信息,请参见developer's comment