From 4b926f6645dd570236ba4d8f365be0fdf4992ea1 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Mon, 29 Sep 2025 20:56:47 +0200 Subject: [PATCH] clean --- core/blockchain.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/blockchain.go b/core/blockchain.go index 0f1f5d6eea..c74fe56efd 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -2347,8 +2347,7 @@ func (bc *BlockChain) recoverAncestors(block *types.Block, makeWitness bool) (co // collectLogs collects the logs that were generated or removed during the // processing of a block. These logs are later announced as deleted or reborn. func (bc *BlockChain) collectLogs(b *types.Block, removed bool) []*types.Log { - receipts, logs := bc.collectLogsAndReceipts(b, removed) - _ = receipts // receipts are not used here, but retrieved for efficiency in other callers + _, logs := bc.collectLogsAndReceipts(b, removed) return logs }