From a8928d5f11b63468d31812e1292f283068d6a84a Mon Sep 17 00:00:00 2001 From: greg Date: Wed, 13 Mar 2024 18:13:53 +0000 Subject: [PATCH] update changelog and remove deprecated label on get_client --- CHANGELOG.md | 1 + gossip/src/gossip_service.rs | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 779a1301802391..387701908fe8cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ Release channels have their own copy of this changelog: * New program deployments default to the exact size of a program, instead of double the size. Program accounts must be extended with `solana program extend` before an upgrade if they need to accommodate larger programs. + * Interface for `gossip_service::get_client()` has changed. `gossip_service::get_multi_client()` has been removed. * Upgrade Notes * `solana-program` and `solana-sdk` default to support for Borsh v1, with limited backward compatibility for v0.10 and v0.9. Please upgrade to Borsh v1. diff --git a/gossip/src/gossip_service.rs b/gossip/src/gossip_service.rs index 0bd4750e269a48..0bc258306edb32 100644 --- a/gossip/src/gossip_service.rs +++ b/gossip/src/gossip_service.rs @@ -197,8 +197,7 @@ pub fn discover( )) } -/// Creates a ThinClient by selecting a valid node at random -#[deprecated(since = "1.18.6", note = "Interface will change")] +/// Creates a TpuClient by selecting a valid node at random pub fn get_client( nodes: &[ContactInfo], connection_cache: Arc,