Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rachit77 committed Sep 10, 2024
1 parent 6b6c1d1 commit 8793d69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ func runReorgDetectorL1IfNeeded(
}
rd := newReorgDetector(cfg, l1Client)

errChan := make(chan error, 1)
errChan := make(chan error)
go func() {
if err := rd.Start(ctx); err != nil {
errChan <- err
Expand All @@ -547,7 +547,7 @@ func runReorgDetectorL2IfNeeded(
}
rd := newReorgDetector(cfg, l2Client)

errChan := make(chan error, 1)
errChan := make(chan error)
go func() {
if err := rd.Start(ctx); err != nil {
errChan <- err
Expand Down

0 comments on commit 8793d69

Please sign in to comment.