Skip to content

Commit

Permalink
only register MaxCandidates-1 candidates initially (#1714)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailai-Wang authored Oct 3, 2022
1 parent 7c8a9ff commit f5b1860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/collator-selection/src/benchmarking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ benchmarks! {
// worse case is when we have all the max-candidate slots filled except one, and we fill that
// one.
register_as_candidate {
let c in 1 .. T::MaxCandidates::get();
let c in 1 .. T::MaxCandidates::get() - 1;

<CandidacyBond<T>>::put(T::Currency::minimum_balance());
<DesiredCandidates<T>>::put(c + 1);
Expand Down

0 comments on commit f5b1860

Please sign in to comment.