From 20573cbaf320ba99aa721e6e76a69447ab3f9694 Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Fri, 18 Apr 2025 08:46:32 -0400 Subject: [PATCH] fix: add slither disable after slither actions update - We have always been ok with risk here and ensured this won't happen for our use case, but slither actions version was recently updated so this fails in CI. --- 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 828d0b1..9af755d 100644 --- a/foundry/src/Dispatcher.sol +++ b/foundry/src/Dispatcher.sol @@ -62,7 +62,7 @@ contract Dispatcher { revert Dispatcher__UnapprovedExecutor(); } - // 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) );