Skip to content

Commit

Permalink
local test fixes, comment code removal
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeghen committed Jun 2, 2024
1 parent 3c7ccea commit a41af1e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions script/DeploySaverville.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ contract DeploySaverville is Script {
vrfCoordinator.fundSubscription(subId, 100 ether);
console.log("Funded subscription with 100 ETH");

// Deploy MockERC20 for WETH
wETH = new MockERC20("Wrapped Ether", "WETH");
console.log("Deployed MockERC20 (WETH) at:", address(wETH));
// // Deploy MockERC20 for WETH
// wETH = new MockERC20("Wrapped Ether", "WETH");
// console.log("Deployed MockERC20 (WETH) at:", address(wETH));

// Deploy MockLendingPool
lendingPool = new MockLendingPool(address(wETH));
console.log("Deployed MockLendingPool at:", address(lendingPool));
// // Deploy MockLendingPool
// lendingPool = new MockLendingPool(address(wETH));
// console.log("Deployed MockLendingPool at:", address(lendingPool));

// Deploy Saverville
saverville = new Saverville(subId, address(vrfCoordinator), address(lendingPool));
Expand Down

0 comments on commit a41af1e

Please sign in to comment.