Skip to content

Commit

Permalink
use warn level logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bharath-123 committed Mar 4, 2025
1 parent 7551efa commit 04c2f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grpc/optimistic/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (o *AuctionServiceV1Alpha1) GetBidStream(_ *auctionPb.GetBidStreamRequest,
totalCost := big.NewInt(0)
effectiveTip, err := pendingTx.EffectiveGasTip(optimisticBlock.BaseFee)
if err != nil {
log.Error("effective tip is too low", "effectiveTip", effectiveTip.String())
log.Warn("effective tip is too low", "effectiveTip", effectiveTip.String())
// don't throw an error but we should avoid streaming this bid
continue
}
Expand Down

0 comments on commit 04c2f54

Please sign in to comment.