Skip to content

Commit

Permalink
Clean up context
Browse files Browse the repository at this point in the history
  • Loading branch information
ferglor committed Dec 15, 2023
1 parent ccd1495 commit 43d28a8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/services/ocr2/delegate.go
Original file line number Diff line number Diff line change
Expand Up @@ -1049,9 +1049,9 @@ func (d *Delegate) newServicesOCR2Keepers(
case "v2.1":
return d.newServicesOCR2Keepers21(ctx, lggr, jb, bootstrapPeers, kb, ocrDB, lc, ocrLogger, cfg, spec)
case "v2.0":
return d.newServicesOCR2Keepers20(ctx, lggr, jb, bootstrapPeers, kb, ocrDB, lc, ocrLogger, cfg, spec)
return d.newServicesOCR2Keepers20(lggr, jb, bootstrapPeers, kb, ocrDB, lc, ocrLogger, cfg, spec)
default:
return d.newServicesOCR2Keepers20(ctx, lggr, jb, bootstrapPeers, kb, ocrDB, lc, ocrLogger, cfg, spec)
return d.newServicesOCR2Keepers20(lggr, jb, bootstrapPeers, kb, ocrDB, lc, ocrLogger, cfg, spec)
}
}

Expand Down Expand Up @@ -1207,7 +1207,6 @@ func (d *Delegate) newServicesOCR2Keepers21(
}

func (d *Delegate) newServicesOCR2Keepers20(
ctx context.Context,
lggr logger.SugaredLogger,
jb job.Job,
bootstrapPeers []commontypes.BootstrapperLocator,
Expand Down

0 comments on commit 43d28a8

Please sign in to comment.