//! named accounts for synthesized data accounts for bank state, etc.
//!//! this account carries a bitvector of slots present over the past
//! epoch
//!pubusecrate::slot_history::SlotHistory;usecrate::sysvar::Sysvar;crate::declare_sysvar_id!("SysvarS1otHistory11111111111111111111111111", SlotHistory);implSysvar forSlotHistory{// override
fnsize_of()->usize{// hard-coded so that we don't have to construct an empty
131_097// golden, update if MAX_ENTRIES changes
}}#[cfg(test)]modtests{usesuper::*;#[test]fntest_size_of(){assert_eq!(SlotHistory::size_of(),bincode::serialized_size(&SlotHistory::default()).unwrap()asusize);}}