From e137c473f07e3349113521fd2198cfe95d23d88c Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 2 Dec 2024 12:20:14 +0100 Subject: [PATCH] internal/ethapi: remove reference to blob fields in setcode tx --- internal/ethapi/api.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index f5b4d57202..3f9ce46ddb 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1049,8 +1049,6 @@ func newRPCTransaction(tx *types.Transaction, blockHash common.Hash, blockNumber } else { result.GasPrice = (*hexutil.Big)(tx.GasFeeCap()) } - result.MaxFeePerBlobGas = (*hexutil.Big)(tx.BlobGasFeeCap()) - result.BlobVersionedHashes = tx.BlobHashes() result.AuthorizationList = tx.AuthList() } return result