From 78a926efab1269f9dc4e6fbd6d7846d298b48dff Mon Sep 17 00:00:00 2001 From: healthykim Date: Thu, 7 May 2026 12:58:18 +0200 Subject: [PATCH] core/txpool/blobpool: edit comment --- core/txpool/blobpool/blobpool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index a9f457c144..b20d50a3e6 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -1695,7 +1695,7 @@ func (p *BlobPool) GetBlobs(vhashes []common.Hash, version byte) ([]*kzg4844.Blo return blobs, commitments, proofs, nil } -// AvailableBlobs returns the number of blobs that are available in the subpool. +// AvailableBlobs returns whether the blobs are available in the subpool. func (p *BlobPool) AvailableBlobs(vhashes []common.Hash) []bool { available := make([]bool, len(vhashes)) for i, vhash := range vhashes {