Skip to content

Commit 718c0bb

Browse files
committed
forge fmt
1 parent 29f92ba commit 718c0bb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/CowEvcCollateralSwapWrapper.sol

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,8 @@ contract CowEvcCollateralSwapWrapper is CowWrapper, PreApprovedHashes {
277277
pure
278278
returns (uint256 fromVaultPrice, uint256 toVaultPrice)
279279
{
280-
(address[] memory tokens, uint256[] memory clearingPrices,,) = abi.decode(
281-
settleData[4:], (address[], uint256[], ICowSettlement.Trade[], ICowSettlement.Interaction[][3])
282-
);
280+
(address[] memory tokens, uint256[] memory clearingPrices,,) =
281+
abi.decode(settleData[4:], (address[], uint256[], ICowSettlement.Trade[], ICowSettlement.Interaction[][3]));
283282
for (uint256 i = 0; i < tokens.length; i++) {
284283
if (tokens[i] == fromVault) {
285284
fromVaultPrice = clearingPrices[i];

0 commit comments

Comments
 (0)