We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a1c79 commit 189e341Copy full SHA for 189e341
op-node/chaincfg/chains.go
@@ -12,7 +12,7 @@ import (
12
"github.com/ethereum-optimism/optimism/op-service/eth"
13
)
14
15
-var Mainnet, Goerli, Sepolia *rollup.Config
+var Mainnet, Sepolia *rollup.Config
16
17
func init() {
18
mustCfg := func(name string) *rollup.Config {
@@ -23,7 +23,6 @@ func init() {
23
return cfg
24
}
25
Mainnet = mustCfg("op-mainnet")
26
- Goerli = mustCfg("op-goerli")
27
Sepolia = mustCfg("op-sepolia")
28
29
@@ -46,8 +45,6 @@ func AvailableNetworks() []string {
46
45
47
func handleLegacyName(name string) string {
48
switch name {
49
- case "goerli":
50
- return "op-goerli"
51
case "mainnet":
52
return "op-mainnet"
53
case "sepolia":
0 commit comments