Skip to content

Commit

Permalink
Cleans up debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruteri committed Oct 4, 2023
1 parent 375103c commit c5d7aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/txpool/txpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ func (pool *TxPool) validateTxBasics(tx *types.Transaction, local bool) error {
}
// Make sure the transaction is signed properly.
if _, err := types.Sender(pool.signer, tx); err != nil {
return fmt.Errorf("ErrInvalidSender: %w", err)
return ErrInvalidSender
}
// Drop non-local transactions under our own minimal accepted gas price or tip
if !local && tx.GasTipCapIntCmp(pool.gasPrice) < 0 {
Expand Down

0 comments on commit c5d7aad

Please sign in to comment.