diff --git a/Cargo.lock b/Cargo.lock index 6a6661728..5c9597763 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1171,7 +1171,7 @@ dependencies = [ [[package]] name = "datahighway" -version = "3.0.4" +version = "3.0.6" dependencies = [ "datahighway-runtime", "frame-benchmarking", @@ -1229,7 +1229,7 @@ dependencies = [ [[package]] name = "datahighway-runtime" -version = "3.0.4" +version = "3.0.6" dependencies = [ "chrono", "exchange-rate", @@ -3579,7 +3579,7 @@ dependencies = [ [[package]] name = "mining-eligibility-proxy" -version = "3.0.4" +version = "3.0.6" dependencies = [ "account-set", "chrono", @@ -3848,7 +3848,7 @@ dependencies = [ [[package]] name = "module-primitives" -version = "3.0.4" +version = "3.0.6" dependencies = [ "bitmask", "parity-scale-codec", diff --git a/node/Cargo.toml b/node/Cargo.toml index eb3dc5f7f..a3c614854 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -3,7 +3,7 @@ authors = ['MXC Foundation gGmbH ', 'Luke Schoen ', 'MXC Foundation GmbH ', 'Luke Schoen'] edition = '2018' diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 5a6725ff0..342d74f98 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,7 +2,7 @@ authors = ['MXC Foundation gGmbH ', 'Luke Schoen ', 'Ilya Beregovskiy '] edition = '2018' name = 'datahighway-runtime' -version = '3.0.5' +version = '3.0.6' [package.metadata.docs.rs] targets = ['x86_64-unknown-linux-gnu'] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 110637d9a..0f0fb5ce7 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -197,7 +197,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("datahighway"), impl_name: create_runtime_str!("datahighway"), authoring_version: 2, - spec_version: 8, + spec_version: 9, impl_version: 2, apis: RUNTIME_API_VERSIONS, transaction_version: 2, @@ -807,13 +807,13 @@ impl pallet_staking::Config for Runtime { } parameter_types! { - pub const LaunchPeriod: BlockNumber = 28 * 24 * 60 * MINUTES; - pub const VotingPeriod: BlockNumber = 28 * 24 * 60 * MINUTES; - pub const FastTrackVotingPeriod: BlockNumber = 3 * 24 * 60 * MINUTES; + pub const LaunchPeriod: BlockNumber = 5 * MINUTES; + pub const VotingPeriod: BlockNumber = 5 * MINUTES; + pub const FastTrackVotingPeriod: BlockNumber = 3 * MINUTES; pub const InstantAllowed: bool = true; pub const MinimumDeposit: Balance = 100 * DOLLARS; - pub const EnactmentPeriod: BlockNumber = 30 * 24 * 60 * MINUTES; - pub const CooloffPeriod: BlockNumber = 28 * 24 * 60 * MINUTES; + pub const EnactmentPeriod: BlockNumber = 5 * MINUTES; + pub const CooloffPeriod: BlockNumber = 5 * MINUTES; // One cent: $10,000 / MB pub const PreimageByteDeposit: Balance = 1 * CENTS; pub const MaxVotes: u32 = 100;