Skip to content

Commit

Permalink
feat(taiko-client): revert the change of handling forkchoiceupdate st…
Browse files Browse the repository at this point in the history
…atus (#17288)
  • Loading branch information
mask-pp authored May 21, 2024
1 parent 955d537 commit 140aa25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (s *Syncer) TriggerBeaconSync(blockID uint64) error {
if err != nil {
return err
}
if fcRes.PayloadStatus.Status == engine.INVALID {
if fcRes.PayloadStatus.Status != engine.SYNCING {
return fmt.Errorf("unexpected ForkchoiceUpdate response status: %s", fcRes.PayloadStatus.Status)
}

Expand Down

0 comments on commit 140aa25

Please sign in to comment.