diff --git a/node/pkg/ethereum/watcher.go b/node/pkg/ethereum/watcher.go index be15b9198..e4daca3e2 100644 --- a/node/pkg/ethereum/watcher.go +++ b/node/pkg/ethereum/watcher.go @@ -338,7 +338,8 @@ func (e *Watcher) Run(ctx context.Context) error { if err != nil { ethConnectionErrors.WithLabelValues(e.networkName, "block_by_number_error").Inc() p2p.DefaultRegistry.AddErrorCount(e.chainID, 1) - errC <- fmt.Errorf("failed to request timestamp for block %d: %w", ev.Raw.BlockNumber, err) + errC <- fmt.Errorf("failed to request timestamp for block %d, hash %s: %w", + ev.Raw.BlockNumber, ev.Raw.BlockHash.String(), err) return }