* genesis timestamp * remove clock::create_account() * .. * add configure-able creation time * dividing by 1T, should be dividing by 1B
10 lines
244 B
Rust
10 lines
244 B
Rust
//! This account contains the clock slot, epoch, and leader_schedule_epoch
|
|
//!
|
|
pub use crate::clock::Clock;
|
|
|
|
use crate::sysvar::Sysvar;
|
|
|
|
crate::declare_sysvar_id!("SysvarC1ock11111111111111111111111111111111", Clock);
|
|
|
|
impl Sysvar for Clock {}
|