From 6197090752ecfec054cb1de7571243a533d8f807 Mon Sep 17 00:00:00 2001 From: maskpp Date: Fri, 11 Jul 2025 13:55:11 +0800 Subject: [PATCH] if multi blobs in the same tx, fill the other sidecars --- 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 da729f6aac..1a8342da0f 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -1328,7 +1328,7 @@ func (p *BlobPool) GetBlobs(vhashes []common.Hash) []*types.BlobTxSidecar { } sidecars[idx] = item.BlobTxSidecar() - // If multi blobs in one transaction, fill the other sidecars. + // If multi blobs in the same transaction, fill the other sidecars. hashes := item.BlobHashes() for i, vHash := range hashes { if sidecars[idx] != nil {