fix: pubsub: do not treat ErrExistingNonce as Reject

This commit is contained in:
Aayush 2023-06-12 19:15:40 -04:00 committed by Shrenuj Bansal
parent 26dbe515d7
commit dbf944b488

View File

@ -359,6 +359,8 @@ func (mv *MessageValidator) Validate(ctx context.Context, pid peer.ID, msg *pubs
case xerrors.Is(err, messagepool.ErrNonceGap):
fallthrough
case xerrors.Is(err, messagepool.ErrNonceTooLow):
fallthrough
case xerrors.Is(err, messagepool.ErrExistingNonce):
return pubsub.ValidationIgnore
default:
return pubsub.ValidationReject