fix withBlobSidecar

This commit is contained in:
Sina Mahmoodi 2024-01-19 15:40:02 +03:30
parent 26776a9336
commit 272dc9d6aa

View file

@ -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
}