diff --git a/runtime/src/feature_set.rs b/runtime/src/feature_set.rs index 09743dab9d..28f2b2fb6d 100644 --- a/runtime/src/feature_set.rs +++ b/runtime/src/feature_set.rs @@ -61,6 +61,10 @@ pub mod timestamp_correction { solana_sdk::declare_id!("3zydSLUwuqqsV3wL5wBsaVgyvMox3XTHx7zLEuQf1U2Z"); } +pub mod cumulative_rent_related_fixes { + solana_sdk::declare_id!("FtjnuAtJTWwX3Kx9m24LduNEhzaGuuPfDW6e14SX2Fy5"); +} + lazy_static! { /// Map of feature identifiers to user-visible description pub static ref FEATURE_NAMES: HashMap = [ @@ -78,6 +82,7 @@ lazy_static! { (max_invoke_depth_4::id(), "max invoke call depth 4"), (max_program_call_depth_64::id(), "max program call depth 64"), (timestamp_correction::id(), "correct bank timestamps"), + (cumulative_rent_related_fixes::id(), "rent fixes (#10206, #10468, #11342)"), /*************** ADD NEW FEATURES HERE ***************/ ] .iter()