我们往 Filecoin 发送的消息,并不总是成功的,有可能因为 gas limit 的问题可能会失败,那么这个接口就是用来确认消息是否正确的被处理
Filecoin RPC 接口之根据块 CID 获取块中的消息的确认情况,调用的 RPC 方法名是 Filecoin.ChainGetParentReceipts
Curl 发起的请求为
curl -X POST \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $(cat ~/.lotusstorage/token)" \ --data '{ "jsonrpc": "2.0", "method": "Filecoin.ChainGetParentReceipts", "params": [{"/":"bafy2bzacec7bujc4alv7axu3o4jvqyc6qimxxrrqfnl2rowpkg4gwxtafvutg"}], "id": 3 }' \ 'http://127.0.0.1:1234/rpc/v0'
返回的信息如下
{ "jsonrpc":"2.0", "result":null, "id":3 }
目前尚无回复