diff --git a/contracts/protocol/libraries/logic/GenericLogic.sol b/contracts/protocol/libraries/logic/GenericLogic.sol index 8ba155b3..b32a2e9f 100644 --- a/contracts/protocol/libraries/logic/GenericLogic.sol +++ b/contracts/protocol/libraries/logic/GenericLogic.sol @@ -100,6 +100,7 @@ library GenericLogic { (vars.ltv, vars.liquidationThreshold, , vars.decimals, ) = currentReserve .configuration .getParams(); + vars.exposureCap = currentReserve.configuration.getExposureCap(); vars.assetUnit = 10**vars.decimals; vars.assetPrice = IPriceOracleGetter(oracle).getAssetPrice(vars.currentReserveAddress); @@ -114,7 +115,6 @@ library GenericLogic { vars.userBalanceETH = vars.assetPrice.mul(vars.userBalance).div(vars.assetUnit); vars.totalCollateralInETH = vars.totalCollateralInETH.add(vars.userBalanceETH); - vars.exposureCap = currentReserve.configuration.getExposureCap(); vars.exposureCapped = vars.exposureCap != 0 && IERC20(currentReserve.aTokenAddress).totalSupply().div(10**vars.decimals) > diff --git a/contracts/protocol/libraries/logic/ValidationLogic.sol b/contracts/protocol/libraries/logic/ValidationLogic.sol index fe72983b..14dca17e 100644 --- a/contracts/protocol/libraries/logic/ValidationLogic.sol +++ b/contracts/protocol/libraries/logic/ValidationLogic.sol @@ -456,7 +456,7 @@ library ValidationLogic { address oracle ) internal view { DataTypes.ReserveData memory reserve = reservesData[collateral]; - (, , uint256 ltv, , uint256 healthFactor) = + (, , uint256 ltv, uint256 liquidationThreshold, uint256 healthFactor) = GenericLogic.calculateUserAccountData( from, reservesData, @@ -475,8 +475,17 @@ library ValidationLogic { Errors.VL_HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD ); + // exposureCap == 0 means no cap => can withdraw + // ltv > liquidationThreshold means that there is enough collateral margin => can withdraw + // ltv == 0 means all current collaterals have exceeded the exposure cap => can withdraw + // last means that for this asset the cap is not yet exceeded => can withdraw + // else this means the user is trying to withdraw a collateral that has exceeded the exposure cap, and that it + // as other collaterals available to withdraw: he must withdraw from other collateral reserves first require( - exposureCap == 0 || ltv == 0 || totalSupplyAtoken.div(10**reserveDecimals) < exposureCap, + exposureCap == 0 || + ltv > liquidationThreshold || + ltv == 0 || + totalSupplyAtoken.div(10**reserveDecimals) < exposureCap, Errors.VL_COLLATERAL_EXPOSURE_CAP_EXCEEDED ); }