fix: tvx: missing parentheses (#9649)
https://github.com/filecoin-project/ref-fvm/issues/944#issuecomment-1315245773
This commit is contained in:
parent
303297ae85
commit
ba2e665fc2
@ -417,10 +417,10 @@ func findMsgAndPrecursors(ctx context.Context, mode string, msgCid cid.Cid, send
|
|||||||
case mode == PrecursorSelectAll:
|
case mode == PrecursorSelectAll:
|
||||||
fallthrough
|
fallthrough
|
||||||
case mode == PrecursorSelectParticipants &&
|
case mode == PrecursorSelectParticipants &&
|
||||||
msgSenderID == senderID ||
|
(msgSenderID == senderID ||
|
||||||
msgRecipientID == recipientID ||
|
msgRecipientID == recipientID ||
|
||||||
msgSenderID == recipientID ||
|
msgSenderID == recipientID ||
|
||||||
msgRecipientID == senderID:
|
msgRecipientID == senderID):
|
||||||
related = append(related, m.Message)
|
related = append(related, m.Message)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user