Skip to content

Commit

Permalink
forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
saucepoint committed Mar 27, 2024
1 parent f844687 commit 666faf8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/base/LockAndBatchCall.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ abstract contract LockAndBatchCall is CallsWithLock, SafeCallback {

/// @param executeData The function selectors and calldata for any of the function selectors in ICallsWithLock encoded as an array of bytes.
function execute(bytes memory executeData, bytes memory settleData) external {
(bytes memory lockReturnData) =
poolManager.lock(abi.encode(executeData, abi.encode(msg.sender, settleData)));
(bytes memory lockReturnData) = poolManager.lock(abi.encode(executeData, abi.encode(msg.sender, settleData)));
(bytes memory executeReturnData, bytes memory settleReturnData) = abi.decode(lockReturnData, (bytes, bytes));
_handleAfterExecute(executeReturnData, settleReturnData);
}
Expand Down

0 comments on commit 666faf8

Please sign in to comment.