Skip to content

Commit

Permalink
Fix getClientVersionV1 for Geth 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Jun 4, 2024
1 parent cb32807 commit 631328d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions beacon_node/execution_layer/src/engine_api/json_structures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,9 @@ pub mod serde_logs_bloom {
#[serde(rename_all = "camelCase")]
pub struct JsonClientVersionV1 {
pub code: String,
// This `default` is required until Geth v1.13.x is no longer supported on mainnet.
// See: https://github.com/ethereum/go-ethereum/pull/29351
#[serde(default)]
pub name: String,
pub version: String,
pub commit: String,
Expand Down

0 comments on commit 631328d

Please sign in to comment.