Skip to content

Commit

Permalink
feature(kensetsu): cdp limit per user updated to 10000 (#990)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-N-Chernyshov committed Apr 17, 2024
1 parent d2e9ce5 commit af7e938
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pallets/kensetsu/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>;
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit af7e938

Please sign in to comment.