From af6c6741b473a24cb8c2bfc6cfaf380bf59cb5c4 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Tue, 8 Apr 2025 16:57:09 +0200 Subject: [PATCH] eth/catalyst: no getblobsv2 error --- eth/catalyst/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/catalyst/api.go b/eth/catalyst/api.go index ca4a938674..cb69607e41 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -618,7 +618,7 @@ func (api *ConsensusAPI) GetBlobsV2(hashes []common.Hash) ([]*engine.BlobAndProo // not found, return empty response return nil, nil } - if len(sidecar.Blobs) != len(sidecar.Proofs)*kzg4844.CellProofsPerBlob { + if len(sidecar.Proofs) != len(sidecar.Blobs)*kzg4844.CellProofsPerBlob { return nil, errors.New("NORMAL PROOFS IN GETBLOBSV2, THIS SHOULD NEVER HAPPEN, PLEASE REPORT") } blobHashes := sidecar.BlobHashes()