diff --git a/contracts/Erc20VaultPoolSwap.sol b/contracts/Erc20VaultPoolSwap.sol index a192878c..aa3bb7fc 100644 --- a/contracts/Erc20VaultPoolSwap.sol +++ b/contracts/Erc20VaultPoolSwap.sol @@ -76,10 +76,7 @@ contract Erc20VaultPoolSwap is ProgressiveFee, IErc20VaultPoolSwap { usdc = IERC20(_usdc); } - function setVaultConfigs( - address[] memory _tokens, - VaultConfig[] memory _vaultConfigs - ) external onlyOwner { + function setVaultConfigs(address[] memory _tokens, VaultConfig[] memory _vaultConfigs) external onlyOwner { uint256 len = _tokens.length; require(len == _vaultConfigs.length, "L"); for (uint256 i = 0; i < len; i++) { @@ -285,7 +282,6 @@ contract Erc20VaultPoolSwap is ProgressiveFee, IErc20VaultPoolSwap { } } - function getVaultCalcs(address _pool, uint256 totalInputAmount) public view