Skip to content

Commit

Permalink
feat: do not reject GasFeeCapTooLow
Browse files Browse the repository at this point in the history
  • Loading branch information
LinZexiao committed Aug 28, 2023
1 parent 6d9710e commit 4545d4c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/submodule/mpool/mpool_submodule.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ func (mp *MessagePoolSubmodule) Validate(ctx context.Context, pid peer.ID, msg *
fallthrough
case errors.Is(err, messagepool.ErrNonceTooLow):
fallthrough
case errors.Is(err, messagepool.ErrGasFeeCapTooLow):
fallthrough
case errors.Is(err, messagepool.ErrExistingNonce):
return pubsub.ValidationIgnore
default:
Expand Down

0 comments on commit 4545d4c

Please sign in to comment.