Filecoin.ChainGetTipSetByHeight
Filecoin.ChainGetTipSetByHeight查询指定高度的链头集合。 如果在指定的高度没有区块,那么将返回更早的链头集合。
参数
- ecpochNumber:指定的高度
返回值
Filecoin.ChainGetTipSetByHeight调用返回指定高度的链头集合。
示例代码
请求:
curl -X POST \
-H "Content-Type: application/json" \
--data '{
"jsonrpc":"2.0",
"method":"Filecoin.ChainGetTipSetByHeight",
"params":[ 10101 ],
"id":7878
}' \
http://127.0.0.1:1234/rpc/v0
响应:
{
"id": 7878,
"jsonrpc": "2.0",
"result": {
"Cids": null,
"Blocks": null,
"Height": 0
}
}