Skip to content

Commit

Permalink
fix: eth pump
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Mar 13, 2024
1 parent 1547da5 commit 5807355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/UniV3Swapper.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ contract UniswapV3SwapperTest is Setup {
// Assert WETH balance in the contract is 0
assertEq(weth.balanceOf(address(uniV3Swapper)), 0);

uint256 toGet = (amount * 1e12) / 4_000;
uint256 toGet = (amount * 1e12) / 10_000;

// Perform swap from asset to WETH
uint256 amountIn = uniV3Swapper.swapTo(
Expand Down

0 comments on commit 5807355

Please sign in to comment.