Skip to content

Commit

Permalink
fix: Set MAX_VALID_DEBT_CEILING = 2^40 - 1
Browse files Browse the repository at this point in the history
  • Loading branch information
LHerskind committed Oct 12, 2021
1 parent 909ea6b commit fa4c485
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ library ReserveConfiguration {
uint256 constant MAX_VALID_LIQUIDATION_PROTOCOL_FEE = 10000;
uint256 constant MAX_VALID_EMODE_CATEGORY = 255;
uint256 constant MAX_VALID_UNBACKED_MINT_CAP = 68719476735;
uint256 constant MAX_VALID_DEBT_CEILING = 1099511627776;

uint256 constant MAX_VALID_DEBT_CEILING = 1099511627775;
uint256 constant DEBT_CEILING_DECIMALS = 2;

/**
Expand Down

0 comments on commit fa4c485

Please sign in to comment.