diff --git a/parachain/runtime/interlay/src/lib.rs b/parachain/runtime/interlay/src/lib.rs index ef53390eca..ab935702a2 100644 --- a/parachain/runtime/interlay/src/lib.rs +++ b/parachain/runtime/interlay/src/lib.rs @@ -112,7 +112,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("interlay-parachain"), impl_name: create_runtime_str!("interlay-parachain"), authoring_version: 1, - spec_version: 1025001, + spec_version: 1025002, impl_version: 1, transaction_version: 4, apis: RUNTIME_API_VERSIONS, @@ -496,7 +496,7 @@ type EnsureRootOrAllTechnicalCommittee = EitherOfDiverse< >; parameter_types! { - pub const LaunchPeriod: u64 = 1000 * 60 * 60 * 24 * 7; // one week + pub const LaunchPeriod: u64 = 60 * 60 * 24 * 7; // one week (seconds) pub const VotingPeriod: BlockNumber = 7 * DAYS; pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS; // Require 250 vINTR to make a proposal. Given the crowdloan airdrop, this qualifies about 7500 diff --git a/parachain/runtime/kintsugi/src/lib.rs b/parachain/runtime/kintsugi/src/lib.rs index e283de4d0c..44761fc66c 100644 --- a/parachain/runtime/kintsugi/src/lib.rs +++ b/parachain/runtime/kintsugi/src/lib.rs @@ -113,7 +113,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kintsugi-parachain"), impl_name: create_runtime_str!("kintsugi-parachain"), authoring_version: 1, - spec_version: 1025001, + spec_version: 1025002, impl_version: 1, transaction_version: 4, apis: RUNTIME_API_VERSIONS, @@ -496,7 +496,7 @@ type EnsureRootOrAllTechnicalCommittee = EitherOfDiverse< >; parameter_types! { - pub const LaunchPeriod: u64 = 1000 * 60 * 60 * 24 * 7; // one week + pub const LaunchPeriod: u64 = 60 * 60 * 24 * 7; // one week (seconds) pub const VotingPeriod: BlockNumber = 2 * DAYS; pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS; // Require 5 vKINT to make a proposal. Given the crowdloan airdrop, this qualifies about 3500