Skip to content

Commit

Permalink
fix reth bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bsamuels453 committed Jan 9, 2024
1 parent 67dc1ea commit a8581de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/health/ethereum/execution_rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ func (c *ExecRpcClient) GetLatestBlockBy(ctx context.Context, blockType string)
if err.Error() == notFinalizingErrors[0] ||
err.Error() == notFinalizingErrors[1] ||
err.Error() == notFinalizingErrors[2] ||
err.Error() == notFinalizingErrors[3] {
err.Error() == notFinalizingErrors[3] ||
err.Error() == notFinalizingErrors[4] {
choice = &ClientForkChoice{
Pod: c.session.Pod,
BlockNumber: 0,
Expand Down

0 comments on commit a8581de

Please sign in to comment.