From 237419911fbf1541a92651acdd2e0c78514538e2 Mon Sep 17 00:00:00 2001 From: Michael Heuer <20623991+Michael-A-Heuer@users.noreply.github.com> Date: Fri, 17 Mar 2023 18:41:43 +0100 Subject: [PATCH] Fix wrong network alias --- test/Foo.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Foo.t.sol b/test/Foo.t.sol index 96b5d93..636243c 100644 --- a/test/Foo.t.sol +++ b/test/Foo.t.sol @@ -39,7 +39,7 @@ contract FooTest is PRBTest, StdCheats { } // Run the test normally, otherwise. - vm.createSelectFork({ urlOrAlias: "ethereum", blockNumber: 16_428_000 }); + vm.createSelectFork({ urlOrAlias: "mainnet", blockNumber: 16_428_000 }); address usdc = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; address holder = 0x7713974908Be4BEd47172370115e8b1219F4A5f0; uint256 actualBalance = IERC20(usdc).balanceOf(holder);