From b2a91222623ee01b5792af0687c16b1059af49e7 Mon Sep 17 00:00:00 2001 From: cairo Date: Tue, 28 Jan 2025 18:56:29 +0100 Subject: [PATCH] Clean functions --- src/base/BaseCustomCurve.sol | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/base/BaseCustomCurve.sol b/src/base/BaseCustomCurve.sol index 3c1a4c5..fa24b25 100644 --- a/src/base/BaseCustomCurve.sol +++ b/src/base/BaseCustomCurve.sol @@ -214,24 +214,6 @@ abstract contract BaseCustomCurve is BaseCustomAccounting { virtual returns (uint256 unspecifiedAmount); - /** - * @dev Calculate the amount of tokens to be received by the swapper from an exact input amount. - * @return amountOut The amount of tokens to be sent by the swapper in exchange for `amountIn`. - */ - function _getAmountOutFromExactInput(uint256 amountIn, Currency input, Currency output, bool zeroForOne) - internal - virtual - returns (uint256 amountOut); - - /** - * @dev Calculate the amount of tokens to be taken from the swapper for an exact output amount. - * @return amountIn The amount of tokens the receiver would receive in exchange for `amountOut`. - */ - function _getAmountInForExactOutput(uint256 amountOut, Currency input, Currency output, bool zeroForOne) - internal - virtual - returns (uint256 amountIn); - /** * @dev Calculate the amount of tokens to use and liquidity shares to burn for a remove liquidity request. * @return amount0 The amount of token0 to be received by the liquidity provider.