Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite committed Aug 23, 2024
1 parent 71772b6 commit 3063331
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ script = 'scripts'
out = 'out'
libs = ['lib']
fs_permissions = [{access = "write", path = "./reports"}]
evm_version = 'shanghai'

[rpc_endpoints]
mainnet = "${RPC_MAINNET}"
Expand Down
2 changes: 1 addition & 1 deletion tests/EmissionTestMATICXPolygon.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ contract EmissionTestMATICXPolygon is BaseTest {
address vWMATIC_WHALE = 0xe52F5349153b8eb3B89675AF45aC7502C4997E6A;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('polygon'), 39361970);
vm.createSelectFork(vm.rpcUrl('polygon'), 60952423);
}

function test_activation() public {
Expand Down
4 changes: 2 additions & 2 deletions tests/EmissionTestSTMATICPolygon.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ contract EmissionTestSTMATICPolygon is BaseTest {
uint256 constant TOTAL_DISTRIBUTION = 60_000 ether; // 10'000 stMATIC/month, 6 months
uint88 constant DURATION_DISTRIBUTION = 180 days;

address STMATIC_WHALE = 0xB975364Bf0368726075A80da76D1Bf260244a25D;
address STMATIC_WHALE = 0x667Ed8Cb7cf2B83FF9922a1357B104F9F11eE6f9;
address vWMATIC_WHALE = 0xe52F5349153b8eb3B89675AF45aC7502C4997E6A;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('polygon'), 39361970);
vm.createSelectFork(vm.rpcUrl('polygon'), 60952532);
}

function test_activation() public {
Expand Down

0 comments on commit 3063331

Please sign in to comment.