Scheduler pre block limit note (#13231)

Co-authored-by: parity-processbot <>
This commit is contained in:
Muharem Ismailov
2023-04-03 12:59:01 +02:00
committed by GitHub
parent 7e3e3db282
commit e524bf0e30
3 changed files with 16 additions and 10 deletions
+3
View File
@@ -364,7 +364,10 @@ impl pallet_scheduler::Config for Runtime {
type RuntimeCall = RuntimeCall;
type MaximumWeight = MaximumSchedulerWeight;
type ScheduleOrigin = EnsureRoot<AccountId>;
#[cfg(feature = "runtime-benchmarks")]
type MaxScheduledPerBlock = ConstU32<512>;
#[cfg(not(feature = "runtime-benchmarks"))]
type MaxScheduledPerBlock = ConstU32<50>;
type WeightInfo = pallet_scheduler::weights::SubstrateWeight<Runtime>;
type OriginPrivilegeCmp = EqualPrivilegeOnly;
type Preimages = Preimage;