Comment sysvar and builtin lists as deprecated and remove new keys (#34365)

This commit is contained in:
Justin Starry 2023-12-09 01:17:17 +08:00 committed by GitHub
parent c43edd2fef
commit 79739e1b78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 15 deletions

View File

@ -26,7 +26,7 @@ use {
}; };
lazy_static! { lazy_static! {
// Copied keys over since direct references create cyclical dependency. // This will be deprecated and so this list shouldn't be modified
pub static ref BUILTIN_PROGRAMS_KEYS: [Pubkey; 10] = { pub static ref BUILTIN_PROGRAMS_KEYS: [Pubkey; 10] = {
let parse = |s| Pubkey::from_str(s).unwrap(); let parse = |s| Pubkey::from_str(s).unwrap();
[ [

View File

@ -100,6 +100,7 @@ pub mod slot_history;
pub mod stake_history; pub mod stake_history;
lazy_static! { lazy_static! {
// This will be deprecated and so this list shouldn't be modified
pub static ref ALL_IDS: Vec<Pubkey> = vec![ pub static ref ALL_IDS: Vec<Pubkey> = vec![
clock::id(), clock::id(),
epoch_schedule::id(), epoch_schedule::id(),
@ -113,8 +114,6 @@ lazy_static! {
slot_history::id(), slot_history::id(),
stake_history::id(), stake_history::id(),
instructions::id(), instructions::id(),
epoch_rewards::id(),
last_restart_slot::id(),
]; ];
} }
@ -138,12 +137,6 @@ macro_rules! declare_sysvar_id(
check_id(pubkey) check_id(pubkey)
} }
} }
#[cfg(test)]
#[test]
fn test_sysvar_id() {
assert!($crate::sysvar::is_sysvar_id(&id()), "sysvar::is_sysvar_id() doesn't know about {}", $name);
}
) )
); );
@ -164,12 +157,6 @@ macro_rules! declare_deprecated_sysvar_id(
check_id(pubkey) check_id(pubkey)
} }
} }
#[cfg(test)]
#[test]
fn test_sysvar_id() {
assert!($crate::sysvar::is_sysvar_id(&id()), "sysvar::is_sysvar_id() doesn't know about {}", $name);
}
) )
); );