From 0d10a01ef85662eec791cd95df6694577277247e Mon Sep 17 00:00:00 2001 From: lightclient Date: Thu, 1 May 2025 14:13:10 -0600 Subject: [PATCH] ethclient: fixup comment --- ethclient/ethclient.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ethclient/ethclient.go b/ethclient/ethclient.go index 0e295710c8..9d0e0d5b52 100644 --- a/ethclient/ethclient.go +++ b/ethclient/ethclient.go @@ -158,8 +158,7 @@ func (ec *Client) getBlock(ctx context.Context, method string, args ...interface if err := json.Unmarshal(raw, &body); err != nil { return nil, err } - // Pending blocks do not return a block hash, set it to empty hash explicitly - // for sender caching. + // Pending blocks don't return a block hash, compute it for sender caching. if body.Hash == nil { tmp := head.Hash() body.Hash = &tmp