Update deprecation versions (#20959)

This commit is contained in:
Jack May
2021-10-26 09:06:41 -07:00
committed by GitHub
parent 43168e6365
commit 2515f6a04f
10 changed files with 32 additions and 32 deletions

View File

@ -19,7 +19,7 @@ pub enum Source {
}
impl Source {
#[deprecated(since = "1.8.0", note = "Please use `get_blockhash` instead")]
#[deprecated(since = "1.9.0", note = "Please use `get_blockhash` instead")]
pub fn get_blockhash_and_fee_calculator(
&self,
rpc_client: &RpcClient,
@ -43,7 +43,7 @@ impl Source {
}
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please do not use, will no longer be available in the future"
)]
pub fn get_fee_calculator(
@ -134,7 +134,7 @@ impl BlockhashQuery {
BlockhashQuery::new(blockhash, sign_only, nonce_account)
}
#[deprecated(since = "1.8.0", note = "Please use `get_blockhash` instead")]
#[deprecated(since = "1.9.0", note = "Please use `get_blockhash` instead")]
pub fn get_blockhash_and_fee_calculator(
&self,
rpc_client: &RpcClient,

View File

@ -4113,7 +4113,7 @@ impl RpcClient {
}
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use `get_latest_blockhash` and `get_fee_for_message` instead"
)]
#[allow(deprecated)]
@ -4123,7 +4123,7 @@ impl RpcClient {
}
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use `get_latest_blockhash_with_commitment` and `get_fee_for_message` instead"
)]
#[allow(deprecated)]
@ -4151,7 +4151,7 @@ impl RpcClient {
})
}
#[deprecated(since = "1.8.0", note = "Please use `get_latest_blockhash` instead")]
#[deprecated(since = "1.9.0", note = "Please use `get_latest_blockhash` instead")]
#[allow(deprecated)]
pub fn get_recent_blockhash(&self) -> ClientResult<(Hash, FeeCalculator)> {
#[allow(deprecated)]
@ -4162,7 +4162,7 @@ impl RpcClient {
}
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use `get_latest_blockhash_with_commitment` instead"
)]
#[allow(deprecated)]
@ -4229,7 +4229,7 @@ impl RpcClient {
})
}
#[deprecated(since = "1.8.0", note = "Please `get_fee_for_message` instead")]
#[deprecated(since = "1.9.0", note = "Please `get_fee_for_message` instead")]
#[allow(deprecated)]
pub fn get_fee_calculator_for_blockhash(
&self,
@ -4242,7 +4242,7 @@ impl RpcClient {
}
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please `get_latest_blockhash_with_commitment` and `get_fee_for_message` instead"
)]
#[allow(deprecated)]
@ -4266,7 +4266,7 @@ impl RpcClient {
}
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please do not use, will no longer be available in the future"
)]
#[allow(deprecated)]
@ -4284,7 +4284,7 @@ impl RpcClient {
}
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use `get_new_latest_blockhash` instead"
)]
#[allow(deprecated)]

View File

@ -43,18 +43,18 @@ pub enum RpcRequest {
GetEpochInfo,
GetEpochSchedule,
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use RpcRequest::GetFeeForMessage instead"
)]
GetFeeCalculatorForBlockhash,
GetFeeForMessage,
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please do not use, will no longer be available in the future"
)]
GetFeeRateGovernor,
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use RpcRequest::GetFeeForMessage instead"
)]
GetFees,
@ -74,14 +74,14 @@ pub enum RpcRequest {
GetMultipleAccounts,
GetProgramAccounts,
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use RpcRequest::GetLatestBlockhash instead"
)]
GetRecentBlockhash,
GetRecentPerformanceSamples,
GetHighestSnapshotSlot,
#[deprecated(
since = "1.8.0",
since = "1.9.0",
note = "Please use RpcRequest::GetHighestSnapshotSlot instead"
)]
GetSnapshotSlot,