From e8a5b1bd160f109665aa014d03e6bf75da2bb61e Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 21 May 2026 09:00:56 +0200 Subject: [PATCH] eth/catalyst: remove error --- eth/catalyst/api.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eth/catalyst/api.go b/eth/catalyst/api.go index a412a3784f..a1f9673de8 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -679,8 +679,9 @@ func (api *ConsensusAPI) getBlobs(hashes []common.Hash, v2 bool) (engine.BlobAnd return res, nil } -func (api *ConsensusAPI) HasBlobs(hashes []common.Hash) ([]bool, error) { - return api.eth.BlobTxPool().AvailableBlobs(hashes), nil +// HasBlobs reports availability for the requested blob-versioned-hashes. +func (api *ConsensusAPI) HasBlobs(hashes []common.Hash) []bool { + return api.eth.BlobTxPool().AvailableBlobs(hashes) } // Helper for NewPayload* methods.