From be519f2362587cd389b5d70f553cc59492080b19 Mon Sep 17 00:00:00 2001 From: call-by Date: Tue, 16 Jul 2024 08:43:26 -0400 Subject: [PATCH] fix: ignore slither for withdraw eth to recipient address --- src/core/ExoCapsule.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/ExoCapsule.sol b/src/core/ExoCapsule.sol index 636546d9..0a475153 100644 --- a/src/core/ExoCapsule.sol +++ b/src/core/ExoCapsule.sol @@ -249,6 +249,7 @@ contract ExoCapsule is ReentrancyGuardUpgradeable, ExoCapsuleStorage, IExoCapsul return validator; } + // slither-disable-next-line arbitrary-send-eth function _sendETH(address recipient, uint256 amountWei) internal nonReentrant { (bool sent,) = recipient.call{value: amountWei}(""); if (!sent) {