2019-10-08 22:34:26 -07:00
|
|
|
//! This account contains the current cluster rent
|
|
|
|
//!
|
2019-11-04 12:31:24 -08:00
|
|
|
pub use crate::epoch_schedule::EpochSchedule;
|
2020-10-29 19:16:52 +00:00
|
|
|
use crate::sysvar::Sysvar;
|
2019-10-08 22:34:26 -07:00
|
|
|
|
2019-11-21 16:34:40 -08:00
|
|
|
crate::declare_sysvar_id!("SysvarEpochSchedu1e111111111111111111111111", EpochSchedule);
|
2019-10-08 22:34:26 -07:00
|
|
|
|
2019-11-04 12:31:24 -08:00
|
|
|
impl Sysvar for EpochSchedule {}
|