Skip to content

Commit

Permalink
Log warn instead of return error (#5547)
Browse files Browse the repository at this point in the history
* Fix 5395
  • Loading branch information
terencechain committed Apr 20, 2020
1 parent 7b89b17 commit 982d935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon-chain/blockchain/process_block_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func (s *Service) rmStatesOlderThanLastFinalized(ctx context.Context, startSlot
}

if err := s.beaconDB.DeleteStates(ctx, roots); err != nil {
return err
log.Warnf("Could not delete states: %v", err)
}

return nil
Expand Down

0 comments on commit 982d935

Please sign in to comment.