From c9bc896a585e01d3d5254e8c4051ab6b87fb681d Mon Sep 17 00:00:00 2001 From: Vicky Date: Thu, 19 Mar 2026 01:13:32 +0800 Subject: [PATCH] Removed the whole block. --- internal/ethapi/api.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index d11d38883b..993a480648 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1862,12 +1862,6 @@ func (api *TransactionAPI) SignTransaction(ctx context.Context, args Transaction if err != nil { return nil, err } - // If the transaction-to-sign was a blob transaction, then the signed one - // no longer retains the blobs, only the blob hashes. In this step, we need - // to put back the blob(s). - if args.Blobs != nil { - signed = signed.WithBlobTxSidecar(types.NewBlobTxSidecar(sidecarVersion, args.Blobs, args.Commitments, args.Proofs)) - } data, err := signed.MarshalBinary() if err != nil { return nil, err