Skip to content

Commit

Permalink
Fix lint missed earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
sergerad committed May 19, 2023
1 parent 80ba145 commit 73ade2b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tracker/event_tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,13 @@ func (e *EventTracker) Start(ctx context.Context) error {
go common.RetryForever(ctx, time.Second, func(context.Context) error {
if err := blockTracker.Init(); err != nil {
e.logger.Error("failed to init blocktracker", "error", err)

return err
}

if err := blockTracker.Start(); err != nil {
e.logger.Error("failed to start blocktracker", "error", err)

return err
}
return nil
Expand Down

0 comments on commit 73ade2b

Please sign in to comment.