Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/eth2wrap/eth2wrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func isTimeoutError(err error) bool {
// isSyncingError returns true if error message contains the word "syncing".
func isSyncingError(err error) bool {
msg := err.Error()
return strings.Contains(msg, "syncing")
return strings.Contains(msg, "syncing") || strings.Contains(msg, "HeadBlockNotFullyVerified")
}

// isBadGateway returns true when the error indicates a connectivity or upstream gateway issue.
Expand Down
Loading