whitespace + comment cleanup

This commit is contained in:
Noah Zinsmeister
2020-01-30 12:49:09 -05:00
parent 2d84a7f5f5
commit bab77458b2
2 changed files with 2 additions and 2 deletions

View File

@ -21,5 +21,5 @@ interface IUniswapV2Exchange {
function skim(address to) external;
function sync() external;
function initialize(address, address) external; // only called once by the factory on deploy
function initialize(address, address) external;
}

View File

@ -13,5 +13,5 @@ interface IUniswapV2Factory {
function createExchange(address tokenA, address tokenB) external returns (address exchange);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
function setFeeToSetter(address) external;
}