cmd/utils: swap goerli and ropsten in usage

This commit is contained in:
q9f 2020-04-01 18:35:23 +02:00
parent ebbd2b5558
commit 3996f77d98
No known key found for this signature in database
GPG key ID: E79CDFA171DC2DF9

View file

@ -169,17 +169,17 @@ var (
Name: "testnet", Name: "testnet",
Usage: "Pre-configured test network (Deprecated: Please choose one of --goerli, --rinkeby, or --ropsten.)", Usage: "Pre-configured test network (Deprecated: Please choose one of --goerli, --rinkeby, or --ropsten.)",
} }
RopstenFlag = cli.BoolFlag{ GoerliFlag = cli.BoolFlag{
Name: "ropsten", Name: "goerli",
Usage: "Ropsten network: pre-configured proof-of-work test network", Usage: "Görli network: pre-configured proof-of-authority test network",
} }
RinkebyFlag = cli.BoolFlag{ RinkebyFlag = cli.BoolFlag{
Name: "rinkeby", Name: "rinkeby",
Usage: "Rinkeby network: pre-configured proof-of-authority test network", Usage: "Rinkeby network: pre-configured proof-of-authority test network",
} }
GoerliFlag = cli.BoolFlag{ RopstenFlag = cli.BoolFlag{
Name: "goerli", Name: "ropsten",
Usage: "Görli network: pre-configured proof-of-authority test network", Usage: "Ropsten network: pre-configured proof-of-work test network",
} }
DeveloperFlag = cli.BoolFlag{ DeveloperFlag = cli.BoolFlag{
Name: "dev", Name: "dev",