From eb2c17d0baa5d68343cfa49271726c4008a01a00 Mon Sep 17 00:00:00 2001 From: Diana Carvalho Date: Mon, 21 Apr 2025 10:17:17 +0100 Subject: [PATCH] docs: Add comment to delegatecall in UniV4 executor --- don't change below this line --- ENG-4437 Took 8 minutes --- foundry/src/executors/UniswapV4Executor.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/foundry/src/executors/UniswapV4Executor.sol b/foundry/src/executors/UniswapV4Executor.sol index ad15503..aa9cfe7 100644 --- a/foundry/src/executors/UniswapV4Executor.sol +++ b/foundry/src/executors/UniswapV4Executor.sol @@ -213,6 +213,7 @@ contract UniswapV4Executor is if (executor == address(0)) { executor = address(this); } + // here we expect to call either `swapExactInputSingle` or `swapExactInput`. See `swap` to see how we encode the selector and the calldata // slither-disable-next-line low-level-calls (bool success, bytes memory returnData) = executor.delegatecall(data); if (!success) {