Skip to content

Commit

Permalink
Merge pull request #426 from ethereum-optimism/interop-sequencer-chec…
Browse files Browse the repository at this point in the history
…k-fix-close

interop: Fix InteropClient Close routine.
  • Loading branch information
protolambda authored Oct 31, 2024
2 parents f8fbad6 + b4bb09d commit 56eebc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/interop/interop.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (cl *InteropClient) Close() {
cl.mu.Lock()
defer cl.mu.Unlock()
if cl.client != nil {
cl.Close()
cl.client.Close()
}
cl.closed = true
}
Expand Down

0 comments on commit 56eebc5

Please sign in to comment.