Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Apr 14, 2024
1 parent 6645104 commit 9fe2e2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions driver/chain_syncer/beaconsync/progress_tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,11 @@ func syncProgressed(last *ethereum.SyncProgress, new *ethereum.SyncProgress) boo
}

// MarkFinished marks the current beacon sync as finished.
func (s *SyncProgressTracker) MarkFinished() {
s.finished = true
func (t *SyncProgressTracker) MarkFinished() {
t.finished = true
}

// Finished returns whether the current beacon sync has been finished.
func (s *SyncProgressTracker) Finished() bool {
return s.finished
func (t *SyncProgressTracker) Finished() bool {
return t.finished
}

0 comments on commit 9fe2e2a

Please sign in to comment.