Skip to content

Commit

Permalink
Update announcements.go
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha committed Mar 4, 2024
1 parent edd56e3 commit 6eb8fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion announcements/announcements.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func (an *FxAnnouncements) AnnounceIExistPeriodically(ctx context.Context) {
case <-ctx.Done():
log.Info("Context cancelled, stopped making periodic iexist announcements")
return
case t := <-ticker.C:
case _ = <-ticker.C:

Check failure on line 208 in announcements/announcements.go

View workflow job for this annotation

GitHub Actions / All

unnecessary assignment to the blank identifier (S1005)
a := &Announcement{
Version: common.Version0,
Type: IExistAnnouncementType,
Expand Down

0 comments on commit 6eb8fa5

Please sign in to comment.