Added ltv in aave resolver

This commit is contained in:
Thrilok Kumar 2020-06-01 21:22:46 +05:30
parent b7d7f4cff4
commit 911f692e8c

View File

@ -104,6 +104,7 @@ contract AaveHelpers is DSMath {
uint totalFeesETH;
uint availableBorrowsETH;
uint currentLiquidationThreshold;
uint ltv;
uint healthFactor;
}
@ -147,7 +148,7 @@ contract AaveHelpers is DSMath {
uint totalFeesETH,
uint availableBorrowsETH,
uint currentLiquidationThreshold,
,
uint ltv,
uint healthFactor
) = aave.getUserAccountData(user);
@ -158,6 +159,7 @@ contract AaveHelpers is DSMath {
totalFeesETH,
availableBorrowsETH,
currentLiquidationThreshold,
ltv,
healthFactor
);
}