From 272dc9d6aa73057067abf028fac151698a24891d Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Fri, 19 Jan 2024 15:40:02 +0330 Subject: [PATCH] fix withBlobSidecar --- core/types/tx_blob.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/tx_blob.go b/core/types/tx_blob.go index c6c31d3488..b40bef8b40 100644 --- a/core/types/tx_blob.go +++ b/core/types/tx_blob.go @@ -192,7 +192,7 @@ func (tx *BlobTx) withoutSidecar() *BlobTx { func (tx *BlobTx) withSidecar(sidecar *BlobTxSidecar) *BlobTx { cpy := *tx - tx.Sidecar = sidecar + cpy.Sidecar = sidecar return &cpy }