internal/ethapi: remove reference to blob fields in setcode tx

This commit is contained in:
Felix Lange 2024-12-02 12:20:14 +01:00 committed by lightclient
parent ab2f0700d8
commit e137c473f0
No known key found for this signature in database
GPG key ID: 75C916AFEE20183E

View file

@ -1049,8 +1049,6 @@ func newRPCTransaction(tx *types.Transaction, blockHash common.Hash, blockNumber
} else { } else {
result.GasPrice = (*hexutil.Big)(tx.GasFeeCap()) result.GasPrice = (*hexutil.Big)(tx.GasFeeCap())
} }
result.MaxFeePerBlobGas = (*hexutil.Big)(tx.BlobGasFeeCap())
result.BlobVersionedHashes = tx.BlobHashes()
result.AuthorizationList = tx.AuthList() result.AuthorizationList = tx.AuthList()
} }
return result return result