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