mirror of
https://github.com/Instadapp/dsa-resolvers-deprecated.git
synced 2024-07-29 22:38:16 +00:00
Added ltv in aave resolver
This commit is contained in:
parent
b7d7f4cff4
commit
911f692e8c
|
@ -104,6 +104,7 @@ contract AaveHelpers is DSMath {
|
||||||
uint totalFeesETH;
|
uint totalFeesETH;
|
||||||
uint availableBorrowsETH;
|
uint availableBorrowsETH;
|
||||||
uint currentLiquidationThreshold;
|
uint currentLiquidationThreshold;
|
||||||
|
uint ltv;
|
||||||
uint healthFactor;
|
uint healthFactor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -147,7 +148,7 @@ contract AaveHelpers is DSMath {
|
||||||
uint totalFeesETH,
|
uint totalFeesETH,
|
||||||
uint availableBorrowsETH,
|
uint availableBorrowsETH,
|
||||||
uint currentLiquidationThreshold,
|
uint currentLiquidationThreshold,
|
||||||
,
|
uint ltv,
|
||||||
uint healthFactor
|
uint healthFactor
|
||||||
) = aave.getUserAccountData(user);
|
) = aave.getUserAccountData(user);
|
||||||
|
|
||||||
|
@ -158,6 +159,7 @@ contract AaveHelpers is DSMath {
|
||||||
totalFeesETH,
|
totalFeesETH,
|
||||||
availableBorrowsETH,
|
availableBorrowsETH,
|
||||||
currentLiquidationThreshold,
|
currentLiquidationThreshold,
|
||||||
|
ltv,
|
||||||
healthFactor
|
healthFactor
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user