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:
|
||||
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)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user