From cc1fde37a4d0d8465f8828ffd4ddb3f494f5699f Mon Sep 17 00:00:00 2001 From: healthykim Date: Thu, 19 Mar 2026 14:11:54 +0900 Subject: [PATCH] fix bug in blob fetcher --- eth/fetcher/blob_fetcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/fetcher/blob_fetcher.go b/eth/fetcher/blob_fetcher.go index 31b9434ad6..05a05fd3fb 100644 --- a/eth/fetcher/blob_fetcher.go +++ b/eth/fetcher/blob_fetcher.go @@ -318,7 +318,7 @@ func (f *BlobFetcher) loop() { reschedule[peer] = struct{}{} } delete(f.waitlist, hash) - //todo delete(f.waittime, hash) + delete(f.waittime, hash) } continue } @@ -419,7 +419,7 @@ func (f *BlobFetcher) loop() { addedCells := make([][]kzg4844.Cell, 0) var requestId int - request := new(cellRequest) + var request *cellRequest for _, hash := range delivery.txs { // Find the request for i, req := range f.requests[delivery.origin] {