Skip to content

Commit 398a533

Browse files
committed
fmt
1 parent 71e9495 commit 398a533

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/MaglevLens.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,9 @@ contract MaglevLens {
179179
for (uint256 j = 0; j < num; ++j) {
180180
if (i == j) continue;
181181
IEVault debtVault = IEVault(vaults[j]);
182-
ltvs[(i * num) + j] =
183-
liquidationLtv ? debtVault.LTVLiquidation(collateralVault) : debtVault.LTVBorrow(collateralVault);
182+
ltvs[(i * num) + j] = liquidationLtv
183+
? debtVault.LTVLiquidation(collateralVault)
184+
: debtVault.LTVBorrow(collateralVault);
184185
}
185186
}
186187
}

0 commit comments

Comments
 (0)