Merge branch 'docs/searchmsg-replace-note' of github.com:filecoin-project/lotus into docs/searchmsg-replace-note

This commit is contained in:
Łukasz Magiera 2021-03-18 19:43:24 +01:00
commit 80ecec7532
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