fix: tvx: missing parentheses (#9649)

https://github.com/filecoin-project/ref-fvm/issues/944#issuecomment-1315245773
This commit is contained in:
Steven Allen
2022-11-16 17:19:45 -05:00
committed by GitHub
parent 303297ae85
commit ba2e665fc2
+4 -4
View File
@@ -417,10 +417,10 @@ func findMsgAndPrecursors(ctx context.Context, mode string, msgCid cid.Cid, send
case mode == PrecursorSelectAll:
fallthrough
case mode == PrecursorSelectParticipants &&
msgSenderID == senderID ||
msgRecipientID == recipientID ||
msgSenderID == recipientID ||
msgRecipientID == senderID:
(msgSenderID == senderID ||
msgRecipientID == recipientID ||
msgSenderID == recipientID ||
msgRecipientID == senderID):
related = append(related, m.Message)
}