Skip to content

Commit

Permalink
feat: temporarily unlimit annual interest rate
Browse files Browse the repository at this point in the history
  • Loading branch information
danielattilasimon committed Apr 15, 2024
1 parent 6b2bae2 commit f5d7c0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/src/Dependencies/LiquityBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ contract LiquityBase is BaseMath, ILiquityBase {
uint256 public constant MIN_NET_DEBT = 1800e18;
// uint constant public MIN_NET_DEBT = 0;

uint256 public constant MAX_ANNUAL_INTEREST_RATE = 1e18; // 100%
// TODO: decide on a maximum value, or remove the limit
uint256 public constant MAX_ANNUAL_INTEREST_RATE = type(uint256).max;

uint256 public constant PERCENT_DIVISOR = 200; // dividing by 200 yields 0.5%

Expand Down

0 comments on commit f5d7c0a

Please sign in to comment.