Go-Ethereum

Start Mining Operation = null (不能挖私有eth鏈)

  • February 21, 2022

不確定是否有人以前見過這個:我正在嘗試探勘一個私有鏈。無論出於何種原因,在我能夠開採兩個區塊之後,我再次嘗試開採該鏈,我得到以下…(下)…任何解決問題的想法?TIA。京東

> miner.start(1)
INFO [07-03|19:18:00] Updated mining threads                   threads=1
INFO [07-03|19:18:00] Transaction pool price threshold updated price=18000000000
INFO [07-03|19:18:00] Starting mining operation 
null
> INFO [07-03|19:18:00] Commit new mining work                   number=3 txs=0 uncles=0 elapsed=104.511µs

用於啟動專用網路的 geth 命令是什麼?

我之前也遇到過這個問題,並通過添加--dev使用預配置專用網路的標誌來修復它。

參考:https ://github.com/ethereum/go-ethereum/wiki/Command-Line-Options

嘗試通過在啟動 geth 時給出這是命令行來將日誌的詳細程度增加到最大級別,即 6 --verbosity 6。這會給我們一些線索。通常挖礦需要時間才能開始,因為它需要生成 DAG

引用自:https://ethereum.stackexchange.com/questions/19352