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,