返回到文章

采纳

编辑于

eth_mining

ethereumj
命令

eth_mining,如果客户端正在主动挖掘新块,则返回true。

参数:

  • none

返回:

  • Boolean - 客户端主动的挖矿返回true,否则为false。

例子:

// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_mining","params":[],"id":71}'

// Result
{
  "id":71,
  "jsonrpc": "2.0",
  "result": true
}