Skip to content

Commit

Permalink
use the latest block height for all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
iChristwin committed Mar 7, 2024
1 parent 54578ae commit 59f3305
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Solaxy.invariant.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ contract SolaxyInvarantTest is Test {

function setUp() public {
string memory url = vm.rpcUrl("gnosis-mainnet");
vm.createSelectFork(url, 32_809_317);
vm.createSelectFork(url);

SLX = new Solaxy(address(99));
SLX_address = address(SLX);
Expand Down
2 changes: 1 addition & 1 deletion test/Solaxy.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ contract SolaxyTest is Test {

function setUp() public {
string memory url = vm.rpcUrl("gnosis-mainnet");
vm.createSelectFork(url, 32_809_317);
vm.createSelectFork(url);
here = address(this);

SLX = new Solaxy(address(99));
Expand Down

0 comments on commit 59f3305

Please sign in to comment.