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 9, 2024
1 parent 5bfc86a commit 90cff60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion driver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (d *Driver) Start() error {
}

// Close closes the driver instance.
func (d *Driver) Close(ctx context.Context) {
func (d *Driver) Close(_ context.Context) {
d.l1HeadSub.Unsubscribe()
d.state.Close()
d.wg.Wait()
Expand Down
2 changes: 1 addition & 1 deletion proposer/proposer.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func (p *Proposer) eventLoop() {
}

// Close closes the proposer instance.
func (p *Proposer) Close(ctx context.Context) {
func (p *Proposer) Close(_ context.Context) {
p.wg.Wait()
}

Expand Down

0 comments on commit 90cff60

Please sign in to comment.