返回到文章

采纳

编辑于

eth_getUncleByBlockNumberAndIndex

ethereumj
命令

eth_getUncleByBlockNumberAndIndex,通过区块号和uncle index位置,查询区块uncle的信息。

参数

  • QUANTITY|TAG - 区块号, 或 "earliest", "latest", "pending"

  • QUANTITY - uncle的index位置。

    params: [
     '0x29c', // 668
     '0x0' // 0
    ]
    

返回

  • eth_getBlockByHash返回一致。

注意:uncle不包含个别交易。

例子

// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleByBlockNumberAndIndex","params":["0x29c", "0x0"],"id":1}'

注意:uncle不包含个别交易。