Skip to content

Commit 39f524d

Browse files
authored
ci: fix flaky fork test using StdChains, add temporary workaround for eth.llamarpc.com being down (#10549)
add temporary workaround for eth.llamarpc.com being down
1 parent 477876a commit 39f524d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

crates/forge/tests/cli/test_cmd.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3551,6 +3551,13 @@ contract CounterTest is Test {
35513551
mapping(uint256 => SomeStruct) internal data;
35523552
35533553
function setUp() public {
3554+
// Temporary workaround for `https://eth.llamarpc.com/` being down
3555+
setChain("mainnet", ChainData({
3556+
name: "mainnet",
3557+
rpcUrl: "https://reth-ethereum.ithaca.xyz/rpc",
3558+
chainId: 1
3559+
}));
3560+
35543561
StdChains.Chain memory chain1 = getChain("mainnet");
35553562
StdChains.Chain memory chain2 = getChain("base");
35563563
Domain memory domain1 = Domain(chain1, vm.createFork(chain1.rpcUrl, 22253716));

0 commit comments

Comments
 (0)