Add a note to ChainGetParentReceipts

This commit is contained in:
Aayush Rajasekaran 2021-03-18 14:35:32 -04:00
parent 4fb4313ee7
commit a0a4d3c462
2 changed files with 4 additions and 2 deletions

View File

@ -70,7 +70,8 @@ type FullNode interface {
ChainGetBlockMessages(ctx context.Context, blockCid cid.Cid) (*BlockMessages, error) ChainGetBlockMessages(ctx context.Context, blockCid cid.Cid) (*BlockMessages, error)
// ChainGetParentReceipts returns receipts for messages in parent tipset of // ChainGetParentReceipts returns receipts for messages in parent tipset of
// the specified block. // the specified block. The receipts in the list returned is one-to-one with the
// messages returned by a call to ChainGetParentMessages with the same blockCid.
ChainGetParentReceipts(ctx context.Context, blockCid cid.Cid) ([]*types.MessageReceipt, error) ChainGetParentReceipts(ctx context.Context, blockCid cid.Cid) ([]*types.MessageReceipt, error)
// ChainGetParentMessages returns messages stored in parent tipset of the // ChainGetParentMessages returns messages stored in parent tipset of the

View File

@ -540,7 +540,8 @@ Response: `null`
### ChainGetParentReceipts ### ChainGetParentReceipts
ChainGetParentReceipts returns receipts for messages in parent tipset of ChainGetParentReceipts returns receipts for messages in parent tipset of
the specified block. the specified block. The receipts in the list returned is one-to-one with the
messages returned by a call to ChainGetParentMessages with the same blockCid.
Perms: read Perms: read