Skip to content

Commit

Permalink
fix: uni swapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Feb 10, 2024
1 parent dd06466 commit 4987809
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/test/mocks/MockUniswapV3Swapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ contract MockUniswapV3Swapper is BaseStrategy, UniswapV3Swapper {
base = _base;
}

function setUniFees(
address _token0,
address _token1,
uint24 _fee
) external {
_setUniFees(_token0, _token1, _fee);
}

function swapFrom(
address _from,
address _to,
Expand Down

0 comments on commit 4987809

Please sign in to comment.