diff --git a/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs b/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs index c9cd7f80a61ae..7b4e22b7e879a 100644 --- a/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs +++ b/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs @@ -319,16 +319,15 @@ impl pallet_broker::Config for Runtime { type Currency = Balances; type OnRevenue = BurnCoretimeRevenue; type TimeslicePeriod = ConstU32<{ coretime::TIMESLICE_PERIOD }>; - // We don't actually need any leases at launch but set to 10 in case we want to sudo some in. - type MaxLeasedCores = ConstU32<10>; - type MaxReservedCores = ConstU32<10>; + type MaxLeasedCores = ConstU32<50>; + type MaxReservedCores = ConstU32<50>; type Coretime = CoretimeAllocator; type ConvertBalance = sp_runtime::traits::Identity; type WeightInfo = weights::pallet_broker::WeightInfo; type PalletId = BrokerPalletId; type AdminOrigin = EnsureRoot; type SovereignAccountOf = SovereignAccountOf; - type MaxAutoRenewals = ConstU32<20>; + type MaxAutoRenewals = ConstU32<50>; type PriceAdapter = pallet_broker::MinimumPrice; type MinimumCreditPurchase = MinimumCreditPurchase; }