Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
defi-dev committed Feb 19, 2022
1 parent 50aadcd commit 4bfc52d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions contracts/Erc20VaultPoolSwap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand Down Expand Up @@ -285,7 +282,6 @@ contract Erc20VaultPoolSwap is ProgressiveFee, IErc20VaultPoolSwap {
}
}


function getVaultCalcs(address _pool, uint256 totalInputAmount)
public
view
Expand Down

0 comments on commit 4bfc52d

Please sign in to comment.