Skip to content

Commit

Permalink
change MinEligibleCollators to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
nanometerzhu committed Oct 13, 2023
1 parent 3aa034a commit c371597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/khala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1545,7 +1545,7 @@ impl pallet_session::Config for Runtime {
parameter_types! {
pub const PotId: PalletId = PalletId(*b"PotStake");
pub const MaxCollatorCandidates: u32 = 1000;
pub const MinEligibleCollators: u32 = 5;
pub const MinEligibleCollators: u32 = 0;
pub const SessionLength: BlockNumber = 6 * HOURS;
pub const MaxInvulnerables: u32 = 100;
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/phala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ impl pallet_session::Config for Runtime {
parameter_types! {
pub const PotId: PalletId = PalletId(*b"PotStake");
pub const MaxCollatorCandidates: u32 = 1000;
pub const MinEligibleCollators: u32 = 5;
pub const MinEligibleCollators: u32 = 0;
pub const SessionLength: BlockNumber = 6 * HOURS;
pub const MaxInvulnerables: u32 = 100;
}
Expand Down

0 comments on commit c371597

Please sign in to comment.