fix change ltv calc

This commit is contained in:
bartosz-lipinski 2020-12-18 08:57:05 -06:00
parent e89a10e654
commit 552b5c4527
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export function useEnrichedLendingObligations() {
: item.collateralReserve.info.dexMarket : item.collateralReserve.info.dexMarket
); );
ltv = (100 * collateral) / borrowedAmount; ltv = (100 * borrowedAmount) / collateral;
} }
const liquidationThreshold = const liquidationThreshold =