From eefafc17ba1142710f57daccdb07a89876879acf Mon Sep 17 00:00:00 2001 From: healthykim Date: Fri, 20 Mar 2026 17:35:20 +0900 Subject: [PATCH] remove incomplete condidtion --- eth/protocols/eth/receipt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/protocols/eth/receipt.go b/eth/protocols/eth/receipt.go index ac71e0906e..5ce53f8a93 100644 --- a/eth/protocols/eth/receipt.go +++ b/eth/protocols/eth/receipt.go @@ -261,7 +261,7 @@ func blockReceiptsToNetwork(blockReceipts, blockBody rlp.RawValue, q receiptQuer it, _ = rlp.NewListIterator(blockReceipts) ) outer := enc.List() - for i := 0; it.Next() && !incomplete; i++ { + for i := 0; it.Next(); i++ { txType, end := nextTxType() if end { return nil, false, fmt.Errorf("block has less txs than receipts (%d)", i)