From f2dd3da8b900aabfa25068255929887152dff5a5 Mon Sep 17 00:00:00 2001 From: refcell Date: Fri, 18 Oct 2024 15:54:26 -0400 Subject: [PATCH] chore: remove version types --- crates/providers-alloy/src/beacon_client.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/crates/providers-alloy/src/beacon_client.rs b/crates/providers-alloy/src/beacon_client.rs index b250146f..35e69bf0 100644 --- a/crates/providers-alloy/src/beacon_client.rs +++ b/crates/providers-alloy/src/beacon_client.rs @@ -102,20 +102,6 @@ impl APIConfigResponse { } } -/// An API version response. -#[derive(Debug, Default, Clone, PartialEq, Eq, serde::Serialize, serde::Deserialize)] -pub struct APIVersionResponse { - /// The data. - pub data: VersionInformation, -} - -/// Version information. -#[derive(Debug, Default, Clone, PartialEq, Eq, serde::Serialize, serde::Deserialize)] -pub struct VersionInformation { - /// The version. - pub version: String, -} - impl APIGenesisResponse { /// Creates a new API genesis response. pub const fn new(genesis_time: u64) -> Self {