From aed25c49e318ab39fb1c14e11d74a07afde662a9 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 28 May 2024 14:06:33 +0200 Subject: [PATCH] fix: serde rename camle case for execution payload body (#5846) --- beacon_node/execution_layer/src/engine_api/json_structures.rs | 1 + 1 file changed, 1 insertion(+) 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 034483eb73..f0d7930351 100644 --- a/beacon_node/execution_layer/src/engine_api/json_structures.rs +++ b/beacon_node/execution_layer/src/engine_api/json_structures.rs @@ -720,6 +720,7 @@ impl From for JsonForkchoiceUpdatedV1Response { #[derive(Clone, Debug, Serialize, Deserialize)] #[serde(bound = "E: EthSpec")] +#[serde(rename_all = "camelCase")] pub struct JsonExecutionPayloadBodyV1 { #[serde(with = "ssz_types::serde_utils::list_of_hex_var_list")] pub transactions: Transactions,