Skip to content

Commit

Permalink
Fix getClientVersionV1 for Geth 1.13 (#5884)
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit 631328d
Author: Michael Sproul <michael@sigmaprime.io>
Date:   Tue Jun 4 11:34:45 2024 +1000

    Fix getClientVersionV1 for Geth 1.13
  • Loading branch information
michaelsproul committed Jun 4, 2024
1 parent 068c433 commit 78f8fa7
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 78f8fa7

Please sign in to comment.