mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
Pruning old states: Use a warning level log instead of fatal (#4707)
* Use a warning level log instead of fatal
This commit is contained in:
parent
c2fbb40909
commit
2a79c572a5
@ -170,7 +170,7 @@ func (s *Service) Start() {
|
||||
|
||||
if finalizedCheckpoint.Epoch > 1 {
|
||||
if err := s.pruneGarbageState(ctx, helpers.StartSlot(finalizedCheckpoint.Epoch)-params.BeaconConfig().SlotsPerEpoch); err != nil {
|
||||
log.Fatalf("Could not prune garbaged state: %v", err)
|
||||
log.WithError(err).Warn("Could not prune old states")
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user