From 860bba4b7a255a33ba4f70f8c6d4a8358e2b2f6a Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Tue, 15 Apr 2025 16:14:22 -0400 Subject: [PATCH] fix: Add slither ignore for loop call - This started being an issue only with slither upgrade in the CI. We accept the risk here, and have for some time. --- foundry/src/Dispatcher.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundry/src/Dispatcher.sol b/foundry/src/Dispatcher.sol index 6daaaa8..483b3e6 100644 --- a/foundry/src/Dispatcher.sol +++ b/foundry/src/Dispatcher.sol @@ -66,7 +66,7 @@ contract Dispatcher { tstore(0, executor) } - // slither-disable-next-line controlled-delegatecall,low-level-calls + // slither-disable-next-line controlled-delegatecall,low-level-calls,calls-loop (bool success, bytes memory result) = executor.delegatecall( abi.encodeWithSelector(IExecutor.swap.selector, amount, data) );