Change error message (#15635)

This commit is contained in:
Potuz
2025-08-26 14:24:32 -03:00
committed by GitHub
parent 240cd1d058
commit 4a1ab70929
2 changed files with 3 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ func (s *Service) setupForkchoice(st state.BeaconState) error {
return errors.Wrap(err, "could not set up forkchoice checkpoints")
}
if err := s.setupForkchoiceTree(st); err != nil {
return errors.Wrap(err, "could not set up forkchoice root")
return errors.Wrap(err, "could not set up forkchoice tree")
}
if err := s.initializeHead(s.ctx, st); err != nil {
return errors.Wrap(err, "could not initialize head from db")

View File

@@ -0,0 +1,2 @@
### Ignored
- Fix error message.