From ccb11a939f4551e910a148a82b515639b34eb60b Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Tue, 13 Apr 2021 14:05:42 -0600 Subject: [PATCH] Deprecate RpcClient methods, RpcRequest variants (#16516) * Deprecate RpcClient methods, RpcRequest variants * Update cli to getSupply --- cli/src/cluster_query.rs | 4 ++-- client/src/rpc_client.rs | 12 ++++++++++++ client/src/rpc_request.rs | 10 ++++++++++ 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/cli/src/cluster_query.rs b/cli/src/cluster_query.rs index a1adadca12..cd08f98129 100644 --- a/cli/src/cluster_query.rs +++ b/cli/src/cluster_query.rs @@ -1234,8 +1234,8 @@ pub fn process_supply( } pub fn process_total_supply(rpc_client: &RpcClient, _config: &CliConfig) -> ProcessResult { - let total_supply = rpc_client.total_supply()?; - Ok(format!("{} SOL", lamports_to_sol(total_supply))) + let supply = rpc_client.supply()?.value; + Ok(format!("{} SOL", lamports_to_sol(supply.total))) } pub fn process_get_transaction_count(rpc_client: &RpcClient, _config: &CliConfig) -> ProcessResult { diff --git a/client/src/rpc_client.rs b/client/src/rpc_client.rs index 5a30a9633b..d50f4c6cec 100644 --- a/client/src/rpc_client.rs +++ b/client/src/rpc_client.rs @@ -458,10 +458,17 @@ impl RpcClient { ) } + #[deprecated(since = "1.5.19", note = "Please use RpcClient::supply() instead")] + #[allow(deprecated)] pub fn total_supply(&self) -> ClientResult { self.total_supply_with_commitment(self.commitment_config) } + #[deprecated( + since = "1.5.19", + note = "Please use RpcClient::supply_with_commitment() instead" + )] + #[allow(deprecated)] pub fn total_supply_with_commitment( &self, commitment_config: CommitmentConfig, @@ -611,6 +618,11 @@ impl RpcClient { ) } + #[deprecated( + since = "1.5.19", + note = "Please use RpcClient::get_confirmed_signatures_for_address2() instead" + )] + #[allow(deprecated)] pub fn get_confirmed_signatures_for_address( &self, address: &Pubkey, diff --git a/client/src/rpc_request.rs b/client/src/rpc_request.rs index 5a339b833b..c76cbc3e6f 100644 --- a/client/src/rpc_request.rs +++ b/client/src/rpc_request.rs @@ -16,7 +16,13 @@ pub enum RpcRequest { GetConfirmedBlock, GetConfirmedBlocks, GetConfirmedBlocksWithLimit, + + #[deprecated( + since = "1.5.19", + note = "Please use RpcRequest::GetConfirmedSignaturesForAddress2 instead" + )] GetConfirmedSignaturesForAddress, + GetConfirmedSignaturesForAddress2, GetConfirmedTransaction, GetEpochInfo, @@ -55,7 +61,10 @@ pub enum RpcRequest { GetTokenAccountsByDelegate, GetTokenAccountsByOwner, GetTokenSupply, + + #[deprecated(since = "1.5.19", note = "Please use RpcRequest::GetSupply instead")] GetTotalSupply, + GetTransactionCount, GetVersion, GetVoteAccounts, @@ -67,6 +76,7 @@ pub enum RpcRequest { SignVote, } +#[allow(deprecated)] impl fmt::Display for RpcRequest { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { let method = match self {