diff --git a/foundry/src/TychoRouter.sol b/foundry/src/TychoRouter.sol index 3eb3829..d67fba9 100644 --- a/foundry/src/TychoRouter.sol +++ b/foundry/src/TychoRouter.sol @@ -806,6 +806,7 @@ contract TychoRouter is /** * @dev Gets balance of a token for a given address. Supports both native ETH and ERC20 tokens. */ + // forgefmt: disable-start function _balanceOf(address token, address owner) internal view @@ -813,7 +814,7 @@ contract TychoRouter is { return token == address(0) ? owner.balance : IERC20(token).balanceOf(owner); - } + }// forgefmt: disable-end /** * @dev Verifies that the expected amount of output tokens was received by the receiver.