From 598572ed865460b236496e88276f71ed47f65811 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 30 Mar 2026 15:05:56 +0200 Subject: [PATCH] eth/protocols/eth: add comment --- eth/protocols/eth/handlers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eth/protocols/eth/handlers.go b/eth/protocols/eth/handlers.go index 09b0341f1a..7556df9af2 100644 --- a/eth/protocols/eth/handlers.go +++ b/eth/protocols/eth/handlers.go @@ -329,6 +329,8 @@ func serviceGetReceiptsQuery70(chain *core.BlockChain, query GetReceiptsRequest, continue } if results == nil { + // This case triggers when the first receipt of the block receipts list doesn't + // fit. We don't append anything to the response here and consider it finished. break } receipts.AppendRaw(results)