lighthouse-pulse/lighthouse/state/chain_config.rs
2018-08-23 18:31:58 +10:00

12 lines
167 B
Rust

pub struct ChainConfig {
pub cycle_length: u8,
}
impl ChainConfig {
pub fn standard() -> Self {
Self {
cycle_length: 8,
}
}
}