Closed StefanVitor closed 1 year ago
Found an issue with
SplitLiquidationCollateral
, fixing that now
No, it looks like that is okay, because, uint256 collateralValue = totalCollateral.mulDown(price);
in SplitLiquidationCollateral contract will be 18 decimals, which is compared with
uint256 private constant LOW_TOTAL_COLLATERAL = 3000e18;
uint256 private constant MEDIUM_TOTAL_COLLATERAL = 100_000e18;
uint256 private constant HIGH_TOTAL_COLLATERAL = 1_000_000e18;
Found an issue with
SplitLiquidationCollateral
, fixing that now