Skip to content

Commit

Permalink
switched to public node for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
iChristwin committed Mar 7, 2024
1 parent c0cab01 commit 324f57f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ remappings = [
]

[rpc_endpoints]
gnosis-mainnet = "https://rpc.ankr.com/gnosis"
gnosis-mainnet = "https://gnosis-rpc.publicnode.com"

[fuzz]
seed = "0x544D"
Expand Down
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, 31_351_993);
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 SolaxyTestWithoutM3ter is Test {

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

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

0 comments on commit 324f57f

Please sign in to comment.