From 8c9c4f0798a0aefbd1d346eb721fb644b250edd8 Mon Sep 17 00:00:00 2001 From: Pranay Valson Date: Tue, 26 Mar 2024 16:05:58 -0700 Subject: [PATCH] omit empty blob sidecars Signed-off-by: Pranay Valson --- internal/types/eth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/types/eth.go b/internal/types/eth.go index 8ff3cedd..421becbb 100644 --- a/internal/types/eth.go +++ b/internal/types/eth.go @@ -89,7 +89,7 @@ type Transaction struct { BlobFeeCap *BigInt `json:"blobFeeCap" rlp:"optional"` BlobHashes []common.Hash `json:"blobHashes" rlp:"optional"` BlobGas uint64 `json:"blobGas" rlp:"optional"` - BlobTxSidecar *BlobTxSidecar `json:"blobTxSidecar" rlp:"optional"` + BlobTxSidecar *BlobTxSidecar `json:"blobTxSidecar rlp:"optional"` } // AccessList is an EIP-2930 access list.