timechain_runtime/weights/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//! Automatically generated runtime weight selected based on features flags

/// Mainnet profile runtime weights (default)
#[cfg(not(any(feature = "testnet", feature = "develop")))]
mod mainnet;

#[cfg(not(any(feature = "testnet", feature = "develop")))]
pub use mainnet::*;

/// Staging profile runtime weights
#[cfg(all(not(feature = "testnet"), feature = "develop"))]
mod staging;

#[cfg(all(not(feature = "testnet"), feature = "develop"))]
pub use staging::*;

/// Testnet profile runtime weights
#[cfg(all(feature = "testnet", not(feature = "develop")))]
mod testnet;

#[cfg(all(feature = "testnet", not(feature = "develop")))]
pub use testnet::*;

/// Develop profile runtime weights
#[cfg(all(feature = "testnet", feature = "develop"))]
mod develop;

#[cfg(all(feature = "testnet", feature = "develop"))]
pub use develop::*;