Skip to content

Commit 0b01a0a

Browse files
committed
run forge fmt
1 parent fe9305e commit 0b01a0a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

contracts/base/Multicall.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ abstract contract Multicall is IMulticall {
2424
results[i] = result;
2525
}
2626
}
27-
}
27+
}

contracts/interfaces/IMulticall.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ interface IMulticall {
99
/// @param data The encoded function data for each of the calls to make to this contract
1010
/// @return results The results from each of the calls passed in via data
1111
function multicall(bytes[] calldata data) external payable returns (bytes[] memory results);
12-
}
12+
}

contracts/libraries/TransferHelper.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ library TransferHelper {
5757
/// @param to The destination of the transfer
5858
/// @param value The value to be transferred
5959
function safeTransferETH(address to, uint256 value) internal {
60-
(bool success, ) = to.call{value: value}(new bytes(0));
61-
require(success, 'STE');
60+
(bool success,) = to.call{value: value}(new bytes(0));
61+
require(success, "STE");
6262
}
6363
}

0 commit comments

Comments
 (0)