From 3e5a5a834f2b1e1e80e65ec0e196c9db6cfbb2fa Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Sat, 4 Dec 2021 14:51:43 -0700 Subject: [PATCH] Bump RpcClient node versions (#21612) * Bump blockhash/fee api check versions * Bump snapshot api check version --- client/src/rpc_client.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/rpc_client.rs b/client/src/rpc_client.rs index afccbb7ba..e36169a85 100644 --- a/client/src/rpc_client.rs +++ b/client/src/rpc_client.rs @@ -1329,7 +1329,7 @@ impl RpcClient { /// # Ok::<(), ClientError>(()) /// ``` pub fn get_highest_snapshot_slot(&self) -> ClientResult { - if self.get_node_version()? < semver::Version::new(1, 8, 0) { + if self.get_node_version()? < semver::Version::new(1, 9, 0) { #[allow(deprecated)] self.get_snapshot_slot().map(|full| RpcSnapshotSlotInfo { full, @@ -4747,7 +4747,7 @@ impl RpcClient { commitment: CommitmentConfig, ) -> ClientResult<(Hash, u64)> { let (blockhash, last_valid_block_height) = - if self.get_node_version()? < semver::Version::new(1, 8, 0) { + if self.get_node_version()? < semver::Version::new(1, 9, 0) { let Fees { blockhash, last_valid_block_height, @@ -4781,7 +4781,7 @@ impl RpcClient { blockhash: &Hash, commitment: CommitmentConfig, ) -> ClientResult { - let result = if self.get_node_version()? < semver::Version::new(1, 8, 0) { + let result = if self.get_node_version()? < semver::Version::new(1, 9, 0) { self.get_fee_calculator_for_blockhash_with_commitment(blockhash, commitment)? .value .is_some()