mirror of
https://github.com/Instadapp/dsa-resolvers-deprecated.git
synced 2024-07-29 22:38:16 +00:00
removed borrow and suppy util
This commit is contained in:
parent
b87f05d34f
commit
91987cc265
|
@ -108,8 +108,7 @@ contract Helpers is DSMath{
|
||||||
uint tokenPrice;
|
uint tokenPrice;
|
||||||
uint supplyBalance;
|
uint supplyBalance;
|
||||||
uint borrowBalance;
|
uint borrowBalance;
|
||||||
uint supplyUtil;
|
uint tokenUtil;
|
||||||
uint borrowUtil;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -128,8 +127,7 @@ contract Resolver is Helpers {
|
||||||
solo.getMarketPrice(id).value,
|
solo.getMarketPrice(id).value,
|
||||||
tokenBal.sign ? tokenBal.value : 0,
|
tokenBal.sign ? tokenBal.value : 0,
|
||||||
!tokenBal.sign ? tokenBal.value : 0,
|
!tokenBal.sign ? tokenBal.value : 0,
|
||||||
wmul(totalPar.supply, rateIndex.supply),
|
wdiv(wmul(totalPar.borrow, rateIndex.borrow), wmul(totalPar.supply, rateIndex.supply))
|
||||||
wmul(totalPar.borrow, rateIndex.borrow)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return tokensData;
|
return tokensData;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user