Add nop feature set for upcoming ported rent fixes (#12841)
This commit is contained in:
parent
f5ed017d69
commit
7de7efe96c
|
@ -61,6 +61,10 @@ pub mod timestamp_correction {
|
||||||
solana_sdk::declare_id!("3zydSLUwuqqsV3wL5wBsaVgyvMox3XTHx7zLEuQf1U2Z");
|
solana_sdk::declare_id!("3zydSLUwuqqsV3wL5wBsaVgyvMox3XTHx7zLEuQf1U2Z");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub mod cumulative_rent_related_fixes {
|
||||||
|
solana_sdk::declare_id!("FtjnuAtJTWwX3Kx9m24LduNEhzaGuuPfDW6e14SX2Fy5");
|
||||||
|
}
|
||||||
|
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
/// Map of feature identifiers to user-visible description
|
/// Map of feature identifiers to user-visible description
|
||||||
pub static ref FEATURE_NAMES: HashMap<Pubkey, &'static str> = [
|
pub static ref FEATURE_NAMES: HashMap<Pubkey, &'static str> = [
|
||||||
|
@ -78,6 +82,7 @@ lazy_static! {
|
||||||
(max_invoke_depth_4::id(), "max invoke call depth 4"),
|
(max_invoke_depth_4::id(), "max invoke call depth 4"),
|
||||||
(max_program_call_depth_64::id(), "max program call depth 64"),
|
(max_program_call_depth_64::id(), "max program call depth 64"),
|
||||||
(timestamp_correction::id(), "correct bank timestamps"),
|
(timestamp_correction::id(), "correct bank timestamps"),
|
||||||
|
(cumulative_rent_related_fixes::id(), "rent fixes (#10206, #10468, #11342)"),
|
||||||
/*************** ADD NEW FEATURES HERE ***************/
|
/*************** ADD NEW FEATURES HERE ***************/
|
||||||
]
|
]
|
||||||
.iter()
|
.iter()
|
||||||
|
|
Loading…
Reference in New Issue