diff --git a/foundry/src/TychoRouter.sol b/foundry/src/TychoRouter.sol index e6f63c1..af3d7a0 100644 --- a/foundry/src/TychoRouter.sol +++ b/foundry/src/TychoRouter.sol @@ -441,9 +441,6 @@ contract TychoRouter is AccessControl, Dispatcher, Pausable, ReentrancyGuard { * @param amount of WETH to unwrap. */ function _unwrapETH(uint256 amount) internal { - if (amount == 0) { - revert TychoRouter__AmountZero(); - } _weth.withdraw(amount); }