timechain_runtime/configs/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The runtime configuration by sections

pub mod consensus;
pub mod core;
#[cfg(not(feature = "testnet"))]
pub mod funding;
pub mod governance;
#[cfg(feature = "testnet")]
pub mod revive;
#[cfg(feature = "testnet")]
pub mod services;
pub mod staking;
pub mod tokenomics;
pub mod utilities;

#[cfg(feature = "testnet")]
pub mod custom;