Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase MaxNominatorsPerCollator from 10 to 100 #746

Merged
merged 2 commits into from
Aug 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/moonbase/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,8 @@ parameter_types! {
pub const RewardPaymentDelay: u32 = 2;
/// Minimum 8 collators selected per round, default at genesis and minimum forever after
pub const MinSelectedCandidates: u32 = 8;
/// Maximum 10 nominators per collator
pub const MaxNominatorsPerCollator: u32 = 10;
/// Maximum 100 nominators per collator
pub const MaxNominatorsPerCollator: u32 = 100;
/// Maximum 100 collators per nominator
pub const MaxCollatorsPerNominator: u32 = 100;
/// Default fixed percent a collator takes off the top of due rewards is 20%
Expand Down
4 changes: 2 additions & 2 deletions runtime/moonbeam/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,8 @@ parameter_types! {
pub const RewardPaymentDelay: u32 = 2;
/// Minimum 8 collators selected per round, default at genesis and minimum forever after
pub const MinSelectedCandidates: u32 = 8;
/// Maximum 10 nominators per collator
pub const MaxNominatorsPerCollator: u32 = 10;
/// Maximum 100 nominators per collator
pub const MaxNominatorsPerCollator: u32 = 100;
/// Maximum 100 collators per nominator
pub const MaxCollatorsPerNominator: u32 = 100;
/// Default fixed percent a collator takes off the top of due rewards is 20%
Expand Down
4 changes: 2 additions & 2 deletions runtime/moonriver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -578,8 +578,8 @@ parameter_types! {
pub const RewardPaymentDelay: u32 = 2;
/// Minimum 8 collators selected per round, default at genesis and minimum forever after
pub const MinSelectedCandidates: u32 = 8;
/// Maximum 10 nominators per collator
pub const MaxNominatorsPerCollator: u32 = 10;
/// Maximum 100 nominators per collator
pub const MaxNominatorsPerCollator: u32 = 100;
/// Maximum 100 collators per nominator
pub const MaxCollatorsPerNominator: u32 = 100;
/// Default fixed percent a collator takes off the top of due rewards is 20%
Expand Down