From 580660821716d94ded20e25cc69f5ffa647bc813 Mon Sep 17 00:00:00 2001 From: Shahul Hameed <10547529+shahthepro@users.noreply.github.com> Date: Fri, 7 Jun 2024 10:47:24 +0530 Subject: [PATCH] Update whale address --- tests/staking/MigratorForkTest.t.sol | 6 +++++- tests/staking/ZapperForkTest.t.sol | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/staking/MigratorForkTest.t.sol b/tests/staking/MigratorForkTest.t.sol index 62fc160a..217ad230 100644 --- a/tests/staking/MigratorForkTest.t.sol +++ b/tests/staking/MigratorForkTest.t.sol @@ -23,7 +23,7 @@ contract MigratorForkTest is Test { IMintableERC20 public ogn; uint256 constant OGN_EPOCH = 1717041600; // May 30, 2024 GMT - address public ogvWhale = 0x24dD9AEAf497c11eE3A0ac2E6E6e014e12799c4E; + address public ogvWhale = 0xD066c92d5dD4fD19E7F053Cf63EBB01Aaaa233CE; constructor() { deployManager = new DeployManager(); @@ -46,6 +46,10 @@ contract MigratorForkTest is Test { ogv.approve(address(veogv), type(uint256).max); vm.stopPrank(); + vm.startPrank(Addresses.TIMELOCK); + ogn.mint(ogvWhale, 10_000_000 ether); // Mint some OGV for the whale + vm.stopPrank(); + vm.warp(OGN_EPOCH + 100 days); if (veogv.balanceOf(ogvWhale) == 0) { diff --git a/tests/staking/ZapperForkTest.t.sol b/tests/staking/ZapperForkTest.t.sol index 34942ad6..263b984d 100644 --- a/tests/staking/ZapperForkTest.t.sol +++ b/tests/staking/ZapperForkTest.t.sol @@ -51,6 +51,10 @@ contract ZapperForkTest is Test { ogv.approve(address(veogv), type(uint256).max); vm.stopPrank(); + vm.startPrank(Addresses.TIMELOCK); + ogn.mint(ogvWhale, 10_000_000 ether); // Mint some OGV for the whale + vm.stopPrank(); + vm.warp(OGN_EPOCH + 100 days); if (veogv.balanceOf(ogvWhale) == 0) {