From 3c79c33d86433eb12c99d73ebe47cb3af8cdc0bf Mon Sep 17 00:00:00 2001 From: Diva M Date: Mon, 28 Nov 2022 14:30:40 -0500 Subject: [PATCH] TEMP HACK to get it compiling --- beacon_node/execution_layer/src/engine_api/json_structures.rs | 4 ++-- consensus/types/src/blobs_sidecar.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/beacon_node/execution_layer/src/engine_api/json_structures.rs b/beacon_node/execution_layer/src/engine_api/json_structures.rs index dae0d8e5d..241ce497b 100644 --- a/beacon_node/execution_layer/src/engine_api/json_structures.rs +++ b/beacon_node/execution_layer/src/engine_api/json_structures.rs @@ -97,7 +97,7 @@ pub struct JsonExecutionPayload { #[superstruct(only(V2))] #[serde(skip_serializing_if = "Option::is_none")] #[serde(default)] - #[serde(with = "eth2_serde_utils::u256_hex_be_opt")] + // #[serde(with = "eth2_serde_utils::u256_hex_be_opt")] pub excess_data_gas: Option, pub block_hash: ExecutionBlockHash, #[serde(with = "ssz_types::serde_utils::list_of_hex_var_list")] @@ -427,7 +427,7 @@ impl From for PayloadAttributes { pub struct JsonBlobsBundle { pub block_hash: ExecutionBlockHash, pub kzgs: VariableList, - #[serde(with = "ssz_types::serde_utils::list_of_hex_fixed_vec")] + // #[serde(with = "ssz_types::serde_utils::list_of_hex_fixed_vec")] pub blobs: VariableList, T::MaxBlobsPerBlock>, } diff --git a/consensus/types/src/blobs_sidecar.rs b/consensus/types/src/blobs_sidecar.rs index 430936cc2..979790bb9 100644 --- a/consensus/types/src/blobs_sidecar.rs +++ b/consensus/types/src/blobs_sidecar.rs @@ -12,7 +12,7 @@ use tree_hash_derive::TreeHash; pub struct BlobsSidecar { pub beacon_block_root: Hash256, pub beacon_block_slot: Slot, - #[serde(with = "ssz_types::serde_utils::list_of_hex_fixed_vec")] + // #[serde(with = "ssz_types::serde_utils::list_of_hex_fixed_vec")] pub blobs: VariableList, T::MaxBlobsPerBlock>, pub kzg_aggregated_proof: KzgProof, }