Commit 9a85422f authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #5178 from ethereum-optimism/jm/fix-rpc-var

fix(ctb): Correct env var name for mainnet config
parents 7d8d4986 cee29977
...@@ -23,7 +23,7 @@ const config: HardhatUserConfig = { ...@@ -23,7 +23,7 @@ const config: HardhatUserConfig = {
live: false, live: false,
}, },
mainnet: { mainnet: {
url: process.env.RPC_URL || 'http://localhost:8545', url: process.env.L1_RPC || 'http://localhost:8545',
}, },
devnetL1: { devnetL1: {
live: false, live: false,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment