Go-Ethereum
geth 中沒有礦工模組
我是乙太坊的新手。我在 Mac(10.13.5)上安裝了霧,但沒有“brew install ethereum”。在終端中嘗試執行“>geth attach”時,它不顯示“礦工”模組。下面是螢幕顯示“歡迎來到 Geth JavaScript 控制台!
instance: Geth/v1.8.8-stable-2688dab4/darwin-amd64/go1.10.1 modules: admin:1.0 debug:1.0 eth:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0".
誰能讓我知道怎麼了?謝謝。
沒有像
miner module
geth這樣的東西。當你使用 geth 啟動你的乙太坊節點時,預設情況下它不會挖礦。要以探勘模式啟動它,請使用
--mine
命令行選項。該--minerthreads
參數可用於設置並行探勘執行緒數(預設為處理器核心總數)。geth --mine --minerthreads=4
我不確定你最初是如何開始geth的,但如果你在rpcapi中包含礦工,如下所示,它應該可以正常工作。
$geth --datadir=./chaindata/ --ipcpath $HOME/.ethereum/geth.ipc --rpc --rpcapi db,eth,net,web3,personal,miner