fix: pubsub: do not treat ErrExistingNonce as Reject

This commit is contained in:
Aayush 2023-06-12 19:15:40 -04:00
parent 1ba0e4b997
commit 2a6d0e5f6e

View File

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