diff --git a/sdk/src/feature_set.rs b/sdk/src/feature_set.rs index 4486cdf5a8..695eafb2bc 100644 --- a/sdk/src/feature_set.rs +++ b/sdk/src/feature_set.rs @@ -488,6 +488,10 @@ pub mod concurrent_replay_of_forks { solana_sdk::declare_id!("9F2Dcu8xkBPKxiiy65XKPZYdCG3VZDpjDTuSmeYLozJe"); } +pub mod incremental_snapshot_only_incremental_hash_calculation { + solana_sdk::declare_id!("25vqsfjk7Nv1prsQJmA4Xu1bN61s8LXCBGUPp8Rfy1UF"); +} + lazy_static! { /// Map of feature identifiers to user-visible description pub static ref FEATURE_NAMES: HashMap = [ @@ -604,6 +608,7 @@ lazy_static! { (use_default_units_in_fee_calculation::id(), "use default units per instruction in fee calculation #26785"), (compact_vote_state_updates::id(), "Compact vote state updates to lower block size"), (concurrent_replay_of_forks::id(), "Allow slots from different forks to be replayed concurrently #26465"), + (incremental_snapshot_only_incremental_hash_calculation::id(), "only hash accounts in incremental snapshot during incremental snapshot creation #26799"), /*************** ADD NEW FEATURES HERE ***************/ ] .iter()