Skip to content

Commit 069b2d3

Browse files
committed
Revert multicallhandler non-functional change
1 parent c7a944e commit 069b2d3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

contracts/handlers/MulticallHandler.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,12 @@ contract MulticallHandler is AcrossMessageHandler, ReentrancyGuard {
6161
* @param message abi encoded array of Call structs, containing a target, callData, and value for each call that
6262
* the contract should make.
6363
*/
64-
function handleV3AcrossMessage(address token, uint256, address, bytes memory message) external nonReentrant {
64+
function handleV3AcrossMessage(
65+
address token,
66+
uint256,
67+
address,
68+
bytes memory message
69+
) external nonReentrant {
6570
Instructions memory instructions = abi.decode(message, (Instructions));
6671

6772
// If there is no fallback recipient, call and revert if the inner call fails.

0 commit comments

Comments
 (0)