diff --git a/programs/stake/src/lib.rs b/programs/stake/src/lib.rs index 65f83524ae..1041288fdb 100644 --- a/programs/stake/src/lib.rs +++ b/programs/stake/src/lib.rs @@ -23,5 +23,6 @@ pub(crate) fn get_minimum_delegation(_feature_set: &FeatureSet) -> u64 { // If/when the minimum delegation amount is changed, the `feature_set` parameter will be used // to chose the correct value. And since the MINIMUM_STAKE_DELEGATION constant cannot be // removed, use it here as to not duplicate magic constants. + #[allow(deprecated)] solana_sdk::stake::MINIMUM_STAKE_DELEGATION } diff --git a/sdk/program/src/stake/deprecated.rs b/sdk/program/src/stake/deprecated.rs new file mode 100644 index 0000000000..c50dba9a35 --- /dev/null +++ b/sdk/program/src/stake/deprecated.rs @@ -0,0 +1,5 @@ +#[deprecated( + since = "1.11.0", + note = "please use `solana_program::stake::tools::get_minimum_delegation()` instead" +)] +pub const MINIMUM_STAKE_DELEGATION: u64 = 1; diff --git a/sdk/program/src/stake/mod.rs b/sdk/program/src/stake/mod.rs index bf2d3566a2..010b271238 100644 --- a/sdk/program/src/stake/mod.rs +++ b/sdk/program/src/stake/mod.rs @@ -3,14 +3,13 @@ pub mod instruction; pub mod state; pub mod tools; +mod deprecated; +pub use deprecated::*; + pub mod program { crate::declare_id!("Stake11111111111111111111111111111111111111"); } -// NOTE: This constant will be deprecated soon; if possible, use -// `solana_stake_program::get_minimum_delegation()` instead. -pub const MINIMUM_STAKE_DELEGATION: u64 = 1; - /// The minimum number of epochs before stake account that is delegated to a delinquent vote /// account may be unstaked with `StakeInstruction::DeactivateDelinquent` pub const MINIMUM_DELINQUENT_EPOCHS_FOR_DEACTIVATION: usize = 5;