mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 03:22:20 +00:00
12 lines
167 B
Rust
12 lines
167 B
Rust
pub struct ChainConfig {
|
|
pub cycle_length: u8,
|
|
}
|
|
|
|
impl ChainConfig {
|
|
pub fn standard() -> Self {
|
|
Self {
|
|
cycle_length: 8,
|
|
}
|
|
}
|
|
}
|