Check vote account initialization (#15503)

* Check account data_len on Vote account init

* Check account data populated on update_cached_accounts
This commit is contained in:
Tyera Eulberg
2021-02-24 10:00:48 -07:00
committed by GitHub
parent c48f731d48
commit eddb7f98f5
5 changed files with 157 additions and 37 deletions

View File

@ -119,6 +119,10 @@ pub mod per_byte_logging_cost {
solana_sdk::declare_id!("59dM4SV6dPEKXPfkrkhFkRdn4K6xwKxdNAPMyXG7J1wT");
}
pub mod check_init_vote_data {
solana_sdk::declare_id!("3ccR6QpxGYsAbWyfevEtBNGfWV4xBffxRj2tD6A9i39F");
}
lazy_static! {
/// Map of feature identifiers to user-visible description
pub static ref FEATURE_NAMES: HashMap<Pubkey, &'static str> = [
@ -148,7 +152,8 @@ lazy_static! {
(full_inflation::mainnet::certusone::enable::id(), "Full inflation enabled by Certus One"),
(full_inflation::mainnet::certusone::vote::id(), "Community vote allowing Certus One to enable full inflation"),
(warp_timestamp_again::id(), "warp timestamp again, adjust bounding to 25% fast 80% slow #15204"),
(per_byte_logging_cost::id(), "charge the compute budget per byte for logging")
(per_byte_logging_cost::id(), "charge the compute budget per byte for logging"),
(check_init_vote_data::id(), "check initialized Vote data")
/*************** ADD NEW FEATURES HERE ***************/
]
.iter()