diff --git a/pallets/kensetsu/src/mock.rs b/pallets/kensetsu/src/mock.rs index 3017087bfd..58a0a9af47 100644 --- a/pallets/kensetsu/src/mock.rs +++ b/pallets/kensetsu/src/mock.rs @@ -246,7 +246,7 @@ impl kensetsu::Config for TestRuntime { type PriceTools = MockPriceTools; type LiquidityProxy = MockLiquidityProxy; type KenIncentiveRemintPercent = GetKenIncentiveRemintPercent; - type MaxCdpsPerOwner = ConstU32<100>; + type MaxCdpsPerOwner = ConstU32<10000>; type MaxRiskManagementTeamSize = ConstU32<100>; type MinimalStabilityFeeAccrue = MinimalStabilityFeeAccrue; type UnsignedPriority = ConstU64<100>; diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 613054b7f0..f898a20a07 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -1972,7 +1972,7 @@ impl kensetsu::Config for Runtime { type PriceTools = PriceTools; type LiquidityProxy = LiquidityProxy; type KenIncentiveRemintPercent = GetKenIncentiveRemintPercent; - type MaxCdpsPerOwner = ConstU32<100>; + type MaxCdpsPerOwner = ConstU32<10000>; type MaxRiskManagementTeamSize = ConstU32<100>; type MinimalStabilityFeeAccrue = MinimalStabilityFeeAccrue; type UnsignedPriority = KensetsuOffchainWorkerTxPriority;