From 7e98145ad7d96b22c087b306eed38142396d062a Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Mon, 14 Apr 2025 10:20:52 -0400 Subject: [PATCH] fix: bad merge fn should be view, not pure --- foundry/src/executors/UniswapV3Executor.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundry/src/executors/UniswapV3Executor.sol b/foundry/src/executors/UniswapV3Executor.sol index 043f3a0..20df282 100644 --- a/foundry/src/executors/UniswapV3Executor.sol +++ b/foundry/src/executors/UniswapV3Executor.sol @@ -166,7 +166,7 @@ contract UniswapV3Executor is IExecutor, ICallback, TokenTransfer { address tokenOut, uint24 fee, TransferType transferType - ) internal pure returns (bytes memory) { + ) internal view returns (bytes memory) { return abi.encodePacked( tokenIn, tokenOut, fee, uint8(transferType), msg.sender, self );