Skip to content

Commit f556bfd

Browse files
committed
fmt
1 parent e774cc9 commit f556bfd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/MaglevLens.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,8 @@ contract MaglevLens {
293293
}
294294

295295
if (controller != address(0)) {
296-
(bool success, bytes memory data) = controller.staticcall(abi.encodeCall(IRiskManager.accountLiquidity, (addr, true)));
296+
(bool success, bytes memory data) =
297+
controller.staticcall(abi.encodeCall(IRiskManager.accountLiquidity, (addr, true)));
297298

298299
if (success) {
299300
(uint256 collateralValue, uint256 liabilityValue) = abi.decode(data, (uint256, uint256));

0 commit comments

Comments
 (0)