From 976f8f8a9c1e740f31fd4bc281fae9665ffb2a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Thu, 12 Feb 2026 20:39:59 +0100 Subject: [PATCH 1/2] westend-coretime: Bump some max values --- .../runtimes/coretime/coretime-westend/src/coretime.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs b/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs index c9cd7f80a61ae..45872a247a648 100644 --- a/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs +++ b/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs @@ -320,15 +320,15 @@ impl pallet_broker::Config for Runtime { 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; } From 5cb335f0eb7f8fa32e7a769fbc6909170285305e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Thu, 12 Feb 2026 22:18:58 +0100 Subject: [PATCH 2/2] Apply suggestion from @bkchr --- .../runtimes/coretime/coretime-westend/src/coretime.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs b/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs index 45872a247a648..7b4e22b7e879a 100644 --- a/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs +++ b/cumulus/parachains/runtimes/coretime/coretime-westend/src/coretime.rs @@ -319,7 +319,6 @@ 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<50>; type MaxReservedCores = ConstU32<50>; type Coretime = CoretimeAllocator;