fix: Remove unnecessary test method
--- don't change below this line --- ENG-4305 Took 2 minutes
This commit is contained in:
@@ -335,17 +335,4 @@ contract CurveExecutorTest is Test, Constants {
|
|||||||
metaRegistry.get_coin_indices(pool, tokenIn, tokenOut);
|
metaRegistry.get_coin_indices(pool, tokenIn, tokenOut);
|
||||||
return (coinInIndex, coinOutIndex);
|
return (coinInIndex, coinOutIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
function dealAaveDai() internal {
|
|
||||||
deal(DAI_ADDR, address(curveExecutorExposed), 100_000 * 10 ** 18);
|
|
||||||
IAaveLendingPool aave =
|
|
||||||
IAaveLendingPool(0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9);
|
|
||||||
|
|
||||||
vm.startPrank(address(curveExecutorExposed));
|
|
||||||
IERC20(DAI_ADDR).approve(address(aave), type(uint256).max);
|
|
||||||
aave.deposit(
|
|
||||||
DAI_ADDR, 100_000 * 10 ** 18, address(curveExecutorExposed), 0
|
|
||||||
);
|
|
||||||
vm.stopPrank();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user