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.
This commit is contained in:
TAMARA LIPOWSKI
2025-04-15 16:14:22 -04:00
committed by Diana Carvalho
parent 11886b3ac1
commit 860bba4b7a

View File

@@ -66,7 +66,7 @@ contract Dispatcher {
tstore(0, executor) 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( (bool success, bytes memory result) = executor.delegatecall(
abi.encodeWithSelector(IExecutor.swap.selector, amount, data) abi.encodeWithSelector(IExecutor.swap.selector, amount, data)
); );