From 7a8d780869bcea5925fde64359727866d6544e60 Mon Sep 17 00:00:00 2001 From: Potuz Date: Mon, 19 Sep 2022 08:10:11 -0300 Subject: [PATCH] do not return on error during on_tick (#11463) --- beacon-chain/blockchain/receive_attestation.go | 1 - 1 file changed, 1 deletion(-) diff --git a/beacon-chain/blockchain/receive_attestation.go b/beacon-chain/blockchain/receive_attestation.go index bee7b7dd5..16bab7be5 100644 --- a/beacon-chain/blockchain/receive_attestation.go +++ b/beacon-chain/blockchain/receive_attestation.go @@ -122,7 +122,6 @@ func (s *Service) spawnProcessAttestationsRoutine(stateFeed *event.Feed) { case <-st.C(): if err := s.ForkChoicer().NewSlot(s.ctx, s.CurrentSlot()); err != nil { log.WithError(err).Error("Could not process new slot") - return } if err := s.UpdateHead(s.ctx); err != nil {