From e9d42499bbf46b13a7f1afef505f92e8d70f816a Mon Sep 17 00:00:00 2001 From: ucwong Date: Thu, 16 Feb 2023 11:40:16 -0600 Subject: [PATCH] eth/downloader: fix typo (#26716) --- eth/downloader/queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go index 421d9d427..1f676e655 100644 --- a/eth/downloader/queue.go +++ b/eth/downloader/queue.go @@ -783,7 +783,7 @@ func (q *queue) DeliverBodies(id string, txLists [][]*types.Transaction, txListH return errInvalidBody } if header.WithdrawalsHash == nil { - // nil hash means there withdrawals should not be present in body + // nil hash means that withdrawals should not be present in body if withdrawalLists[index] != nil { return errInvalidBody }