eth_getUncleByBlockHashAndIndex,通过hash和uncle index位置,获取区块的uncle信息。
参数:
- DATA, 32 Bytes - 区块hash。
- QUANTITY - uncle的index位置。
params: [ '0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b', '0x0' // 0 ]
返回:
- 跟
eth_getBlockByHash
返回一样。
例子:
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleByBlockHashAndIndex","params":["0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b", "0x0"],"id":1}'
跟eth_getBlockByHash
返回一样
注意:uncle不包含个别交易。