eth_getUncleCountByBlockNumber
返回指定块的叔伯数量,使用块编号指定块。
参数
QUANTITY|TAG
- 整数块编号,或字符串"latest"、"earliest"或"pending"
params: [
'0xe8', // 232
]
返回值
QUANTITY
- 指定块的叔伯数量
示例代码
请求:
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleCountByBlockNumber","params":["0xe8"],"id":1}'
响应:
{
"id":1,
"jsonrpc": "2.0",
"result": "0x1" // 1
}