File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ abstract contract Multicall is IMulticall {
24
24
results[i] = result;
25
25
}
26
26
}
27
- }
27
+ }
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ interface IMulticall {
9
9
/// @param data The encoded function data for each of the calls to make to this contract
10
10
/// @return results The results from each of the calls passed in via data
11
11
function multicall (bytes [] calldata data ) external payable returns (bytes [] memory results );
12
- }
12
+ }
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ library TransferHelper {
57
57
/// @param to The destination of the transfer
58
58
/// @param value The value to be transferred
59
59
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 " );
62
62
}
63
63
}
You can’t perform that action at this time.
0 commit comments