Companion for Multi-phase elections solution resubmission (#2648)

* Companion for Multi-phase elections solution resubmission

https://github.com/paritytech/substrate/pull/8290

* update Substrate

Co-authored-by: parity-processbot <>
This commit is contained in:
Peter Goodspeed-Niklaus
2021-05-03 13:29:44 +02:00
committed by GitHub
parent 9bbc0b4460
commit 774d612eef
4 changed files with 158 additions and 152 deletions
+149 -149
View File
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -346,6 +346,7 @@ parameter_types! {
// miner configs // miner configs
pub const MinerMaxIterations: u32 = 10; pub const MinerMaxIterations: u32 = 10;
pub OffchainRepeat: BlockNumber = 5;
} }
sp_npos_elections::generate_solution_type!( sp_npos_elections::generate_solution_type!(
@@ -364,8 +365,9 @@ impl pallet_election_provider_multi_phase::Config for Runtime {
type UnsignedPhase = UnsignedPhase; type UnsignedPhase = UnsignedPhase;
type SolutionImprovementThreshold = SolutionImprovementThreshold; type SolutionImprovementThreshold = SolutionImprovementThreshold;
type MinerMaxIterations = MinerMaxIterations; type MinerMaxIterations = MinerMaxIterations;
type MinerMaxWeight = OffchainSolutionWeightLimit; type MinerMaxWeight = OffchainSolutionWeightLimit; // For now use the one from staking.
type MinerMaxLength = OffchainSolutionLengthLimit; type MinerMaxLength = OffchainSolutionLengthLimit;
type OffchainRepeat = OffchainRepeat;
type MinerTxPriority = NposSolutionPriority; type MinerTxPriority = NposSolutionPriority;
type DataProvider = Staking; type DataProvider = Staking;
type OnChainAccuracy = Perbill; type OnChainAccuracy = Perbill;
+3 -1
View File
@@ -331,6 +331,7 @@ parameter_types! {
// miner configs // miner configs
pub const MinerMaxIterations: u32 = 10; pub const MinerMaxIterations: u32 = 10;
pub OffchainRepeat: BlockNumber = 5;
} }
sp_npos_elections::generate_solution_type!( sp_npos_elections::generate_solution_type!(
@@ -349,8 +350,9 @@ impl pallet_election_provider_multi_phase::Config for Runtime {
type UnsignedPhase = UnsignedPhase; type UnsignedPhase = UnsignedPhase;
type SolutionImprovementThreshold = SolutionImprovementThreshold; type SolutionImprovementThreshold = SolutionImprovementThreshold;
type MinerMaxIterations = MinerMaxIterations; type MinerMaxIterations = MinerMaxIterations;
type MinerMaxWeight = OffchainSolutionWeightLimit; type MinerMaxWeight = OffchainSolutionWeightLimit; // For now use the one from staking.
type MinerMaxLength = OffchainSolutionLengthLimit; type MinerMaxLength = OffchainSolutionLengthLimit;
type OffchainRepeat = OffchainRepeat;
type MinerTxPriority = NposSolutionPriority; type MinerTxPriority = NposSolutionPriority;
type DataProvider = Staking; type DataProvider = Staking;
type OnChainAccuracy = Perbill; type OnChainAccuracy = Perbill;
+3 -1
View File
@@ -343,6 +343,7 @@ parameter_types! {
// miner configs // miner configs
pub const MinerMaxIterations: u32 = 10; pub const MinerMaxIterations: u32 = 10;
pub OffchainRepeat: BlockNumber = 5;
} }
sp_npos_elections::generate_solution_type!( sp_npos_elections::generate_solution_type!(
@@ -361,8 +362,9 @@ impl pallet_election_provider_multi_phase::Config for Runtime {
type UnsignedPhase = UnsignedPhase; type UnsignedPhase = UnsignedPhase;
type SolutionImprovementThreshold = SolutionImprovementThreshold; type SolutionImprovementThreshold = SolutionImprovementThreshold;
type MinerMaxIterations = MinerMaxIterations; type MinerMaxIterations = MinerMaxIterations;
type MinerMaxWeight = OffchainSolutionWeightLimit; type MinerMaxWeight = OffchainSolutionWeightLimit; // For now use the one from staking.
type MinerMaxLength = OffchainSolutionLengthLimit; type MinerMaxLength = OffchainSolutionLengthLimit;
type OffchainRepeat = OffchainRepeat;
type MinerTxPriority = NposSolutionPriority; type MinerTxPriority = NposSolutionPriority;
type DataProvider = Staking; type DataProvider = Staking;
type OnChainAccuracy = Perbill; type OnChainAccuracy = Perbill;