Skip to content

Commit

Permalink
bet
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdevbear committed May 25, 2024
1 parent 4683c05 commit 4fb1c7d
Showing 1 changed file with 12 additions and 17 deletions.
29 changes: 12 additions & 17 deletions mod/beacon/blockchain/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,16 @@ func NewService[
AvailabilityStoreT, ReadOnlyBeaconStateT,
BlobSidecarsT, DepositStoreT,
]{
sb: sb,
logger: logger,
cs: cs,
ee: ee,
lb: lb,
bp: bp,
sp: sp,
dc: dc,
metrics: newChainMetrics(ts),
sb: sb,
logger: logger,
cs: cs,
ee: ee,
lb: lb,
bp: bp,
sp: sp,
dc: dc,
metrics: newChainMetrics(ts),
//nolint:mnd // temp.
maxFCUGap: 2 * time.Second,
}
}
Expand All @@ -142,15 +143,9 @@ func (s *Service[
BlobSidecarsT,
DepositStoreT,
]) Start(
ctx context.Context,
_ context.Context,
) error {
for {
select {
case <-ctx.Done():
return nil
}
}

return nil
}

func (s *Service[
Expand Down

0 comments on commit 4fb1c7d

Please sign in to comment.