返回到文章

采纳

编辑于

eth_getBlockTransactionCountByNumber

ethereumj
命令

eth_getBlockTransactionCountByNumber,通过区块号进行匹配,返回交易数。

参数

  • QUANTITY|TAG - 区块号, 或 "earliest", "latest" or "pending"
    params: [
     '0xe8', // 232
    ]
    

返回

  • QUANTITY - 在该区块中的交易数量。

例子

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

// Result
{
  "id":1,
  "jsonrpc": "2.0",
  "result": "0xa" // 10
}