We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MaxValidatorsCount
1 parent 649b0f9 commit 6c9806cCopy full SHA for 6c9806c
polkadot/runtime/test-runtime/src/lib.rs
@@ -403,7 +403,8 @@ impl pallet_staking::Config for Runtime {
403
type DisablingStrategy = pallet_staking::UpToLimitWithReEnablingDisablingStrategy;
404
type MaxInvulnerables = ConstU32<20>;
405
type MaxRewardPagesPerValidator = ConstU32<20>;
406
- type MaxValidatorsCount = MaxAuthorities;
+ // It should be equal to MaxAuthorities, but that is too large in this setting
407
+ type MaxValidatorsCount = ConstU32<300>;
408
type MaxDisabledValidators = ConstU32<100>;
409
}
410
0 commit comments