From d2b36d4c0b1d68e9de084456c0a9c9ae176a3536 Mon Sep 17 00:00:00 2001 From: healthykim Date: Mon, 13 Apr 2026 22:47:18 +0200 Subject: [PATCH] add eager mode --- eth/fetcher/blob_fetcher.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eth/fetcher/blob_fetcher.go b/eth/fetcher/blob_fetcher.go index b917ad5c9f..7ceb019dcd 100644 --- a/eth/fetcher/blob_fetcher.go +++ b/eth/fetcher/blob_fetcher.go @@ -277,7 +277,8 @@ func (f *BlobFetcher) loop() { } else { randomValue = f.rand.Intn(100) } - if randomValue < fetchProbability { + // For eager mode, always fetch immediately + if randomValue < fetchProbability || f.custody.OneCount() >= kzg4844.DataPerBlob { f.full[hash] = struct{}{} } else { f.partial[hash] = struct{}{}