Skip to content

Commit

Permalink
Merge branch 'feat/base' into refactor/bytecode
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisGD committed May 13, 2024
2 parents 86b7a5d + de336f3 commit ee89eba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/forge/fork/migration/AaveV3MigrationBundlerForkTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,17 @@ contract AaveV3MigrationBundlerForkTest is MigrationForkTest {

uint256 public constant RATE_MODE = 2;

uint256 collateralSupplied = 10_000 ether;
uint256 collateralSupplied = 1_000 ether;
uint256 borrowed = 1 ether;

function setUp() public override {
super.setUp();

_initMarket(WST_ETH, WETH);
if (block.chainid == 1) {
_initMarket(DAI, WETH);
} else if (block.chainid == 8453) {
_initMarket(CB_ETH, WETH);
}

vm.label(AAVE_V3_POOL, "Aave V3 Pool");

Expand Down

0 comments on commit ee89eba

Please sign in to comment.