返回到文章

采纳

编辑于

net_peerCount

ethereumj
命令

net_peerCount,返回当前连接到客户端的对等的数量。

参数:

  • none

返回:

  • QUANTITY - 已连接对等的数量的整数。

例子:

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

// Result
{
  "id":74,
  "jsonrpc": "2.0",
  "result": "0x2" // 2
}