* move Account to solana-sdk (#13198)
(cherry picked from commit c458d4b213
)
# Conflicts:
# programs/bpf/benches/bpf_loader.rs
* resolve conflicts
Co-authored-by: Jack May <jack@solana.com>
9 lines
252 B
Rust
9 lines
252 B
Rust
//! This account contains the current cluster rent
|
|
//!
|
|
pub use crate::epoch_schedule::EpochSchedule;
|
|
use crate::sysvar::Sysvar;
|
|
|
|
crate::declare_sysvar_id!("SysvarEpochSchedu1e111111111111111111111111", EpochSchedule);
|
|
|
|
impl Sysvar for EpochSchedule {}
|