Skip to content

Commit

Permalink
adds nonce to log
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden committed Oct 2, 2024
1 parent 19bc922 commit f0a08b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/relays/execution/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (r *Relay) Start(ctx context.Context, eg *errgroup.Group) error {
for _, ev := range events {
err := r.waitAndSend(ctx, ev)
if errors.Is(err, header.ErrBeaconHeaderNotFinalized) {
log.Info("beacon header not finalized yet")
log.WithField("nonce", ev.Nonce).Info("beacon header not finalized yet")
continue
} else if err != nil {
return fmt.Errorf("submit event: %w", err)
Expand Down

0 comments on commit f0a08b3

Please sign in to comment.