Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyonline committed Sep 24, 2024
1 parent fc6afc0 commit a9ff9bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions test/scenarios/ynEIGEN/ynLSDeDepositAdapter.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pragma solidity ^0.8.24;
import {TestAssetUtils} from "test/utils/TestAssetUtils.sol";

import "./ynLSDeWithdrawals.t.sol";
import "forge-std/console.sol";

contract ynLSDeDepositAdapterTest is ynLSDeWithdrawalsTest {

Expand Down Expand Up @@ -48,7 +47,6 @@ contract ynLSDeDepositAdapterTest is ynLSDeWithdrawalsTest {

vm.startPrank(user);
IERC20(chainAddresses.lsd.OETH_ADDRESS).approve(address(ynEigenDepositAdapter_), _amount);
console.log("OETH balance before deposit: ", IERC20(chainAddresses.lsd.OETH_ADDRESS).balanceOf(user));
uint256 _ynOut = ynEigenDepositAdapter_.deposit(IERC20(chainAddresses.lsd.OETH_ADDRESS), _amount, user);
vm.stopPrank();

Expand Down
8 changes: 4 additions & 4 deletions test/scenarios/ynEIGEN/ynLSDeWithdrawals.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ contract ynLSDeWithdrawalsTest is ynLSDeScenarioBaseTest {

function setUp() public virtual override {

// vm.createSelectFork(
// "", // rpc url
// 20782621 // fork block number
// );
vm.createSelectFork(
"https://eth-mainnet.g.alchemy.com/v2/GWBlcyYZH65PHOKw_l-9pvqYdwJFPo4-", // rpc url
20782621 // fork block number
);
super.setUp();

uint256 _totalAssetsBefore = yneigen.totalAssets();
Expand Down

0 comments on commit a9ff9bc

Please sign in to comment.