diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 22659c130..d2a97f082 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -207,7 +207,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 254, + spec_version: 255, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -1044,7 +1044,11 @@ parameter_types! { pub const InitialDissolveNetworkScheduleDuration: BlockNumber = 5 * 24 * 60 * 60 / 12; // 5 days pub const SubtensorInitialTaoWeight: u64 = 971_718_665_099_567_868; // 0.05267697438728329% tao weight. pub const InitialEmaPriceHalvingPeriod: u64 = 201_600_u64; // 4 weeks - pub const DurationOfStartCall: u64 = 7 * 24 * 60 * 60 / 12; // 7 days + pub const DurationOfStartCall: u64 = if cfg!(feature = "fast-blocks") { + 10 // Only 10 blocks for fast blocks + } else { + 7 * 24 * 60 * 60 / 12 // 7 days + }; } impl pallet_subtensor::Config for Runtime {