From 1b6a24fd75b91de7570f110e87d81ed081639bb7 Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Wed, 9 Jul 2025 12:19:19 -0400 Subject: [PATCH] fix: silence slither on native address setting - We don't need a zero address check, since we expect this to be the zero address for most cases. --- foundry/src/uniswap_x/UniswapXFiller.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/foundry/src/uniswap_x/UniswapXFiller.sol b/foundry/src/uniswap_x/UniswapXFiller.sol index 2daaf40..0904ef8 100644 --- a/foundry/src/uniswap_x/UniswapXFiller.sol +++ b/foundry/src/uniswap_x/UniswapXFiller.sol @@ -44,6 +44,8 @@ contract UniswapXFiller is AccessControl, IReactorCallback { _grantRole(REACTOR_ROLE, address(_reactor)); tychoRouter = _tychoRouter; reactor = IReactor(_reactor); + + // slither-disable-next-line missing-zero-check nativeAddress = _native_address; }