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

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Jan 23, 2024
1 parent e8c3f4c commit 8aa8d22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prover/prover_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ func (s *ProverTestSuite) TestContestWrongBlocks() {
s.Equal(header.ParentHash, common.BytesToHash(event.Tran.ParentHash[:]))

// Contest the transition.
contestedSink := make(chan *bindings.TaikoL1ClientTransitionContested)
contestedSub, err := s.p.rpc.TaikoL1.WatchTransitionContested(nil, contestedSink, nil)
contestedSink = make(chan *bindings.TaikoL1ClientTransitionContested)
contestedSub, err = s.p.rpc.TaikoL1.WatchTransitionContested(nil, contestedSink, nil)
s.Nil(err)
defer func() {
contestedSub.Unsubscribe()
Expand Down

0 comments on commit 8aa8d22

Please sign in to comment.