diff --git a/Cargo.lock b/Cargo.lock index e932c7e30..090a22160 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4619,7 +4619,7 @@ dependencies = [ [[package]] name = "hydradx-runtime" -version = "211.0.0" +version = "212.0.0" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-dmp-queue", diff --git a/runtime/hydradx/Cargo.toml b/runtime/hydradx/Cargo.toml index e7f31a8dc..6d98783d9 100644 --- a/runtime/hydradx/Cargo.toml +++ b/runtime/hydradx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hydradx-runtime" -version = "211.0.0" +version = "212.0.0" authors = ["GalacticCouncil"] edition = "2021" license = "Apache 2.0" diff --git a/runtime/hydradx/src/governance.rs b/runtime/hydradx/src/governance.rs index 6f7471efd..d9605160d 100644 --- a/runtime/hydradx/src/governance.rs +++ b/runtime/hydradx/src/governance.rs @@ -268,9 +268,9 @@ parameter_types! { pub const DesiredMembers: u32 = 13; pub const DesiredRunnersUp: u32 = 15; pub const ElectionsPhragmenPalletId: LockIdentifier = *b"phrelect"; - pub const MaxElectionCandidates: u32 = 1_000; - pub const MaxElectionVoters: u32 = 1_000; - pub const MaxVotesPerVoter: u32 = 5; + pub const MaxElectionCandidates: u32 = 100; + pub const MaxElectionVoters: u32 = 768; + pub const MaxVotesPerVoter: u32 = 10; } impl pallet_elections_phragmen::Config for Runtime { @@ -297,7 +297,7 @@ impl pallet_elections_phragmen::Config for Runtime { parameter_types! { pub const DataDepositPerByte: Balance = CENTS; - pub const TipCountdown: BlockNumber = 2 * HOURS; + pub const TipCountdown: BlockNumber = 24 * HOURS; pub const TipFindersFee: Percent = Percent::from_percent(1); pub const TipReportDepositBase: Balance = 10 * DOLLARS; pub const TipReportDepositPerByte: Balance = CENTS; diff --git a/runtime/hydradx/src/lib.rs b/runtime/hydradx/src/lib.rs index de1957c81..91d059731 100644 --- a/runtime/hydradx/src/lib.rs +++ b/runtime/hydradx/src/lib.rs @@ -107,7 +107,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("hydradx"), impl_name: create_runtime_str!("hydradx"), authoring_version: 1, - spec_version: 211, + spec_version: 212, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1,