Skip to content

Commit 51028e1

Browse files
committed
Fix linter issue
1 parent f2ce3f0 commit 51028e1

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/core/contracts/common/interfaces/Multicall2.sol

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,12 @@ contract Multicall2 {
1313

1414
function aggregate(Call[] memory calls) public virtual returns (uint256 blockNumber, bytes[] memory returnData) {}
1515

16-
function tryBlockAndAggregate(bool requireSuccess, Call[] memory calls) public returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData) {}
16+
function tryBlockAndAggregate(bool requireSuccess, Call[] memory calls)
17+
public
18+
returns (
19+
uint256 blockNumber,
20+
bytes32 blockHash,
21+
Result[] memory returnData
22+
)
23+
{}
1724
}

0 commit comments

Comments
 (0)