From 209924d220bb4bcaa9ca41ea2fc6738cf2917b01 Mon Sep 17 00:00:00 2001 From: Greg Cusack Date: Mon, 11 Mar 2024 15:33:19 -0400 Subject: [PATCH] bump deprecated version numbers for `get_client` and `get_multi_client` (#184) bump deprecated version numbers --- gossip/src/gossip_service.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gossip/src/gossip_service.rs b/gossip/src/gossip_service.rs index 404a685aa..9e1c56520 100644 --- a/gossip/src/gossip_service.rs +++ b/gossip/src/gossip_service.rs @@ -194,7 +194,7 @@ pub fn discover( } /// Creates a ThinClient by selecting a valid node at random -#[deprecated(since = "1.18.0", note = "Interface will change")] +#[deprecated(since = "1.18.6", note = "Interface will change")] pub fn get_client( nodes: &[ContactInfo], socket_addr_space: &SocketAddrSpace, @@ -210,7 +210,7 @@ pub fn get_client( ThinClient::new(rpc, tpu, connection_cache) } -#[deprecated(since = "1.18.0", note = "Will be removed in favor of get_client")] +#[deprecated(since = "1.18.6", note = "Will be removed in favor of get_client")] pub fn get_multi_client( nodes: &[ContactInfo], socket_addr_space: &SocketAddrSpace,