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 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
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user