mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
moves legacy flags to separate file, hides older flags under show-deprecated-flags command
This commit is contained in:
parent
422f8fdeba
commit
6ff6bca5da
4 changed files with 153 additions and 105 deletions
|
|
@ -240,6 +240,7 @@ func init() {
|
||||||
dumpConfigCommand,
|
dumpConfigCommand,
|
||||||
// See retesteth.go
|
// See retesteth.go
|
||||||
retestethCommand,
|
retestethCommand,
|
||||||
|
utils.ShowDeprecated,
|
||||||
}
|
}
|
||||||
sort.Sort(cli.CommandsByName(app.Commands))
|
sort.Sort(cli.CommandsByName(app.Commands))
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -245,14 +245,6 @@ var AppHelpFlagGroups = []flagGroup{
|
||||||
{
|
{
|
||||||
Name: "ALIASED (deprecated)",
|
Name: "ALIASED (deprecated)",
|
||||||
Flags: append([]cli.Flag{
|
Flags: append([]cli.Flag{
|
||||||
utils.LegacyTestnetFlag,
|
|
||||||
utils.LightLegacyServFlag,
|
|
||||||
utils.LightLegacyPeersFlag,
|
|
||||||
utils.MinerLegacyThreadsFlag,
|
|
||||||
utils.MinerLegacyGasTargetFlag,
|
|
||||||
utils.MinerLegacyGasPriceFlag,
|
|
||||||
utils.MinerLegacyEtherbaseFlag,
|
|
||||||
utils.MinerLegacyExtraDataFlag,
|
|
||||||
utils.RPCLegacyEnabledFlag,
|
utils.RPCLegacyEnabledFlag,
|
||||||
utils.RPCLegacyListenAddrFlag,
|
utils.RPCLegacyListenAddrFlag,
|
||||||
utils.RPCLegacyPortFlag,
|
utils.RPCLegacyPortFlag,
|
||||||
|
|
|
||||||
|
|
@ -165,10 +165,6 @@ var (
|
||||||
Usage: "Network identifier (integer, 1=Frontier, 3=Ropsten, 4=Rinkeby, 5=Görli)",
|
Usage: "Network identifier (integer, 1=Frontier, 3=Ropsten, 4=Rinkeby, 5=Görli)",
|
||||||
Value: eth.DefaultConfig.NetworkId,
|
Value: eth.DefaultConfig.NetworkId,
|
||||||
}
|
}
|
||||||
LegacyTestnetFlag = cli.BoolFlag{ // TODO(q9f): Remove after Ropsten is discontinued.
|
|
||||||
Name: "testnet",
|
|
||||||
Usage: "Pre-configured test network (Deprecated: Please choose one of --goerli, --rinkeby, or --ropsten.)",
|
|
||||||
}
|
|
||||||
GoerliFlag = cli.BoolFlag{
|
GoerliFlag = cli.BoolFlag{
|
||||||
Name: "goerli",
|
Name: "goerli",
|
||||||
Usage: "Görli network: pre-configured proof-of-authority test network",
|
Usage: "Görli network: pre-configured proof-of-authority test network",
|
||||||
|
|
@ -242,11 +238,6 @@ var (
|
||||||
Usage: "Comma separated block number-to-hash mappings to enforce (<number>=<hash>)",
|
Usage: "Comma separated block number-to-hash mappings to enforce (<number>=<hash>)",
|
||||||
}
|
}
|
||||||
// Light server and client settings
|
// Light server and client settings
|
||||||
LightLegacyServFlag = cli.IntFlag{ // Deprecated in favor of light.serve, remove in 2021
|
|
||||||
Name: "lightserv",
|
|
||||||
Usage: "Maximum percentage of time allowed for serving LES requests (deprecated, use --light.serve)",
|
|
||||||
Value: eth.DefaultConfig.LightServ,
|
|
||||||
}
|
|
||||||
LightServeFlag = cli.IntFlag{
|
LightServeFlag = cli.IntFlag{
|
||||||
Name: "light.serve",
|
Name: "light.serve",
|
||||||
Usage: "Maximum percentage of time allowed for serving LES requests (multi-threaded processing allows values over 100)",
|
Usage: "Maximum percentage of time allowed for serving LES requests (multi-threaded processing allows values over 100)",
|
||||||
|
|
@ -262,11 +253,6 @@ var (
|
||||||
Usage: "Outgoing bandwidth limit for serving light clients (kilobytes/sec, 0 = unlimited)",
|
Usage: "Outgoing bandwidth limit for serving light clients (kilobytes/sec, 0 = unlimited)",
|
||||||
Value: eth.DefaultConfig.LightEgress,
|
Value: eth.DefaultConfig.LightEgress,
|
||||||
}
|
}
|
||||||
LightLegacyPeersFlag = cli.IntFlag{ // Deprecated in favor of light.maxpeers, remove in 2021
|
|
||||||
Name: "lightpeers",
|
|
||||||
Usage: "Maximum number of light clients to serve, or light servers to attach to (deprecated, use --light.maxpeers)",
|
|
||||||
Value: eth.DefaultConfig.LightPeers,
|
|
||||||
}
|
|
||||||
LightMaxPeersFlag = cli.IntFlag{
|
LightMaxPeersFlag = cli.IntFlag{
|
||||||
Name: "light.maxpeers",
|
Name: "light.maxpeers",
|
||||||
Usage: "Maximum number of light clients to serve, or light servers to attach to",
|
Usage: "Maximum number of light clients to serve, or light servers to attach to",
|
||||||
|
|
@ -418,11 +404,6 @@ var (
|
||||||
Usage: "Number of CPU threads to use for mining",
|
Usage: "Number of CPU threads to use for mining",
|
||||||
Value: 0,
|
Value: 0,
|
||||||
}
|
}
|
||||||
MinerLegacyThreadsFlag = cli.IntFlag{
|
|
||||||
Name: "minerthreads",
|
|
||||||
Usage: "Number of CPU threads to use for mining (deprecated, use --miner.threads)",
|
|
||||||
Value: 0,
|
|
||||||
}
|
|
||||||
MinerNotifyFlag = cli.StringFlag{
|
MinerNotifyFlag = cli.StringFlag{
|
||||||
Name: "miner.notify",
|
Name: "miner.notify",
|
||||||
Usage: "Comma separated HTTP URL list to notify of new work packages",
|
Usage: "Comma separated HTTP URL list to notify of new work packages",
|
||||||
|
|
@ -432,11 +413,6 @@ var (
|
||||||
Usage: "Target gas floor for mined blocks",
|
Usage: "Target gas floor for mined blocks",
|
||||||
Value: eth.DefaultConfig.Miner.GasFloor,
|
Value: eth.DefaultConfig.Miner.GasFloor,
|
||||||
}
|
}
|
||||||
MinerLegacyGasTargetFlag = cli.Uint64Flag{
|
|
||||||
Name: "targetgaslimit",
|
|
||||||
Usage: "Target gas floor for mined blocks (deprecated, use --miner.gastarget)",
|
|
||||||
Value: eth.DefaultConfig.Miner.GasFloor,
|
|
||||||
}
|
|
||||||
MinerGasLimitFlag = cli.Uint64Flag{
|
MinerGasLimitFlag = cli.Uint64Flag{
|
||||||
Name: "miner.gaslimit",
|
Name: "miner.gaslimit",
|
||||||
Usage: "Target gas ceiling for mined blocks",
|
Usage: "Target gas ceiling for mined blocks",
|
||||||
|
|
@ -447,29 +423,15 @@ var (
|
||||||
Usage: "Minimum gas price for mining a transaction",
|
Usage: "Minimum gas price for mining a transaction",
|
||||||
Value: eth.DefaultConfig.Miner.GasPrice,
|
Value: eth.DefaultConfig.Miner.GasPrice,
|
||||||
}
|
}
|
||||||
MinerLegacyGasPriceFlag = BigFlag{
|
|
||||||
Name: "gasprice",
|
|
||||||
Usage: "Minimum gas price for mining a transaction (deprecated, use --miner.gasprice)",
|
|
||||||
Value: eth.DefaultConfig.Miner.GasPrice,
|
|
||||||
}
|
|
||||||
MinerEtherbaseFlag = cli.StringFlag{
|
MinerEtherbaseFlag = cli.StringFlag{
|
||||||
Name: "miner.etherbase",
|
Name: "miner.etherbase",
|
||||||
Usage: "Public address for block mining rewards (default = first account)",
|
Usage: "Public address for block mining rewards (default = first account)",
|
||||||
Value: "0",
|
Value: "0",
|
||||||
}
|
}
|
||||||
MinerLegacyEtherbaseFlag = cli.StringFlag{
|
|
||||||
Name: "etherbase",
|
|
||||||
Usage: "Public address for block mining rewards (default = first account, deprecated, use --miner.etherbase)",
|
|
||||||
Value: "0",
|
|
||||||
}
|
|
||||||
MinerExtraDataFlag = cli.StringFlag{
|
MinerExtraDataFlag = cli.StringFlag{
|
||||||
Name: "miner.extradata",
|
Name: "miner.extradata",
|
||||||
Usage: "Block extra data set by the miner (default = client version)",
|
Usage: "Block extra data set by the miner (default = client version)",
|
||||||
}
|
}
|
||||||
MinerLegacyExtraDataFlag = cli.StringFlag{
|
|
||||||
Name: "extradata",
|
|
||||||
Usage: "Block extra data set by the miner (default = client version, deprecated, use --miner.extradata)",
|
|
||||||
}
|
|
||||||
MinerRecommitIntervalFlag = cli.DurationFlag{
|
MinerRecommitIntervalFlag = cli.DurationFlag{
|
||||||
Name: "miner.recommit",
|
Name: "miner.recommit",
|
||||||
Usage: "Time interval to recreate the block being mined",
|
Usage: "Time interval to recreate the block being mined",
|
||||||
|
|
@ -533,60 +495,31 @@ var (
|
||||||
Name: "http",
|
Name: "http",
|
||||||
Usage: "Enable the HTTP-RPC server",
|
Usage: "Enable the HTTP-RPC server",
|
||||||
}
|
}
|
||||||
RPCLegacyEnabledFlag = cli.BoolFlag{
|
|
||||||
Name: "rpc",
|
|
||||||
Usage: "Enable the HTTP-RPC server (deprecated, use --http)",
|
|
||||||
}
|
|
||||||
HTTPListenAddrFlag = cli.StringFlag{
|
HTTPListenAddrFlag = cli.StringFlag{
|
||||||
Name: "http.addr",
|
Name: "http.addr",
|
||||||
Usage: "HTTP-RPC server listening interface",
|
Usage: "HTTP-RPC server listening interface",
|
||||||
Value: node.DefaultHTTPHost,
|
Value: node.DefaultHTTPHost,
|
||||||
}
|
}
|
||||||
RPCLegacyListenAddrFlag = cli.StringFlag{
|
|
||||||
Name: "rpcaddr",
|
|
||||||
Usage: "HTTP-RPC server listening interface (deprecated, use --http.addr)",
|
|
||||||
Value: node.DefaultHTTPHost,
|
|
||||||
}
|
|
||||||
HTTPPortFlag = cli.IntFlag{
|
HTTPPortFlag = cli.IntFlag{
|
||||||
Name: "http.port",
|
Name: "http.port",
|
||||||
Usage: "HTTP-RPC server listening port",
|
Usage: "HTTP-RPC server listening port",
|
||||||
Value: node.DefaultHTTPPort,
|
Value: node.DefaultHTTPPort,
|
||||||
}
|
}
|
||||||
RPCLegacyPortFlag = cli.IntFlag{
|
|
||||||
Name: "rpcport",
|
|
||||||
Usage: "HTTP-RPC server listening port (deprecated, use --http.port)",
|
|
||||||
Value: node.DefaultHTTPPort,
|
|
||||||
}
|
|
||||||
HTTPCORSDomainFlag = cli.StringFlag{
|
HTTPCORSDomainFlag = cli.StringFlag{
|
||||||
Name: "http.corsdomain",
|
Name: "http.corsdomain",
|
||||||
Usage: "Comma separated list of domains from which to accept cross origin requests (browser enforced)",
|
Usage: "Comma separated list of domains from which to accept cross origin requests (browser enforced)",
|
||||||
Value: "",
|
Value: "",
|
||||||
}
|
}
|
||||||
RPCLegacyCORSDomainFlag = cli.StringFlag{
|
|
||||||
Name: "rpccorsdomain",
|
|
||||||
Usage: "Comma separated list of domains from which to accept cross origin requests (browser enforced) (deprecated, use --http.corsdomain)",
|
|
||||||
Value: "",
|
|
||||||
}
|
|
||||||
HTTPVirtualHostsFlag = cli.StringFlag{
|
HTTPVirtualHostsFlag = cli.StringFlag{
|
||||||
Name: "http.vhosts",
|
Name: "http.vhosts",
|
||||||
Usage: "Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard.",
|
Usage: "Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard.",
|
||||||
Value: strings.Join(node.DefaultConfig.HTTPVirtualHosts, ","),
|
Value: strings.Join(node.DefaultConfig.HTTPVirtualHosts, ","),
|
||||||
}
|
}
|
||||||
RPCLegacyVirtualHostsFlag = cli.StringFlag{
|
|
||||||
Name: "rpcvhosts",
|
|
||||||
Usage: "Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard. (deprecated, use --http.vhosts)",
|
|
||||||
Value: strings.Join(node.DefaultConfig.HTTPVirtualHosts, ","),
|
|
||||||
}
|
|
||||||
HTTPApiFlag = cli.StringFlag{
|
HTTPApiFlag = cli.StringFlag{
|
||||||
Name: "http.api",
|
Name: "http.api",
|
||||||
Usage: "API's offered over the HTTP-RPC interface",
|
Usage: "API's offered over the HTTP-RPC interface",
|
||||||
Value: "",
|
Value: "",
|
||||||
}
|
}
|
||||||
RPCLegacyApiFlag = cli.StringFlag{
|
|
||||||
Name: "rpcapi",
|
|
||||||
Usage: "API's offered over the HTTP-RPC interface (deprecated, use --http.api)",
|
|
||||||
Value: "",
|
|
||||||
}
|
|
||||||
WSEnabledFlag = cli.BoolFlag{
|
WSEnabledFlag = cli.BoolFlag{
|
||||||
Name: "ws",
|
Name: "ws",
|
||||||
Usage: "Enable the WS-RPC server",
|
Usage: "Enable the WS-RPC server",
|
||||||
|
|
@ -596,41 +529,21 @@ var (
|
||||||
Usage: "WS-RPC server listening interface",
|
Usage: "WS-RPC server listening interface",
|
||||||
Value: node.DefaultWSHost,
|
Value: node.DefaultWSHost,
|
||||||
}
|
}
|
||||||
WSLegacyListenAddrFlag = cli.StringFlag{
|
|
||||||
Name: "wsaddr",
|
|
||||||
Usage: "WS-RPC server listening interface (deprecated, use --ws.addr)",
|
|
||||||
Value: node.DefaultWSHost,
|
|
||||||
}
|
|
||||||
WSPortFlag = cli.IntFlag{
|
WSPortFlag = cli.IntFlag{
|
||||||
Name: "ws.port",
|
Name: "ws.port",
|
||||||
Usage: "WS-RPC server listening port",
|
Usage: "WS-RPC server listening port",
|
||||||
Value: node.DefaultWSPort,
|
Value: node.DefaultWSPort,
|
||||||
}
|
}
|
||||||
WSLegacyPortFlag = cli.IntFlag{
|
|
||||||
Name: "wsport",
|
|
||||||
Usage: "WS-RPC server listening port (deprecated, use --ws.port)",
|
|
||||||
Value: node.DefaultWSPort,
|
|
||||||
}
|
|
||||||
WSApiFlag = cli.StringFlag{
|
WSApiFlag = cli.StringFlag{
|
||||||
Name: "ws.api",
|
Name: "ws.api",
|
||||||
Usage: "API's offered over the WS-RPC interface",
|
Usage: "API's offered over the WS-RPC interface",
|
||||||
Value: "",
|
Value: "",
|
||||||
}
|
}
|
||||||
WSLegacyApiFlag = cli.StringFlag{
|
|
||||||
Name: "wsapi",
|
|
||||||
Usage: "API's offered over the WS-RPC interface (deprecated, use --ws.api)",
|
|
||||||
Value: "",
|
|
||||||
}
|
|
||||||
WSAllowedOriginsFlag = cli.StringFlag{
|
WSAllowedOriginsFlag = cli.StringFlag{
|
||||||
Name: "ws.origins",
|
Name: "ws.origins",
|
||||||
Usage: "Origins from which to accept websockets requests",
|
Usage: "Origins from which to accept websockets requests",
|
||||||
Value: "",
|
Value: "",
|
||||||
}
|
}
|
||||||
WSLegacyAllowedOriginsFlag = cli.StringFlag{
|
|
||||||
Name: "wsorigins",
|
|
||||||
Usage: "Origins from which to accept websockets requests (deprecated, use --ws.origins)",
|
|
||||||
Value: "",
|
|
||||||
}
|
|
||||||
GraphQLEnabledFlag = cli.BoolFlag{
|
GraphQLEnabledFlag = cli.BoolFlag{
|
||||||
Name: "graphql",
|
Name: "graphql",
|
||||||
Usage: "Enable the GraphQL server",
|
Usage: "Enable the GraphQL server",
|
||||||
|
|
@ -738,21 +651,11 @@ var (
|
||||||
Usage: "Number of recent blocks to check for gas prices",
|
Usage: "Number of recent blocks to check for gas prices",
|
||||||
Value: eth.DefaultConfig.GPO.Blocks,
|
Value: eth.DefaultConfig.GPO.Blocks,
|
||||||
}
|
}
|
||||||
GpoLegacyBlocksFlag = cli.IntFlag{
|
|
||||||
Name: "gpoblocks",
|
|
||||||
Usage: "Number of recent blocks to check for gas prices (deprecated, use --gpo.blocks)",
|
|
||||||
Value: eth.DefaultConfig.GPO.Blocks,
|
|
||||||
}
|
|
||||||
GpoPercentileFlag = cli.IntFlag{
|
GpoPercentileFlag = cli.IntFlag{
|
||||||
Name: "gpo.percentile",
|
Name: "gpo.percentile",
|
||||||
Usage: "Suggested gas price is the given percentile of a set of recent transaction gas prices",
|
Usage: "Suggested gas price is the given percentile of a set of recent transaction gas prices",
|
||||||
Value: eth.DefaultConfig.GPO.Percentile,
|
Value: eth.DefaultConfig.GPO.Percentile,
|
||||||
}
|
}
|
||||||
GpoLegacyPercentileFlag = cli.IntFlag{
|
|
||||||
Name: "gpopercentile",
|
|
||||||
Usage: "Suggested gas price is the given percentile of a set of recent transaction gas prices (deprecated, use --gpo.percentile)",
|
|
||||||
Value: eth.DefaultConfig.GPO.Percentile,
|
|
||||||
}
|
|
||||||
WhisperEnabledFlag = cli.BoolFlag{
|
WhisperEnabledFlag = cli.BoolFlag{
|
||||||
Name: "shh",
|
Name: "shh",
|
||||||
Usage: "Enable Whisper",
|
Usage: "Enable Whisper",
|
||||||
|
|
|
||||||
152
cmd/utils/flags_legacy.go
Normal file
152
cmd/utils/flags_legacy.go
Normal file
|
|
@ -0,0 +1,152 @@
|
||||||
|
// Copyright 2020 The go-ethereum Authors
|
||||||
|
// This file is part of go-ethereum.
|
||||||
|
//
|
||||||
|
// go-ethereum is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// go-ethereum is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/ethereum/go-ethereum/eth"
|
||||||
|
"github.com/ethereum/go-ethereum/node"
|
||||||
|
"gopkg.in/urfave/cli.v1"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
ShowDeprecated = cli.Command{
|
||||||
|
Action: showDeprecated,
|
||||||
|
Name: "show-deprecated-flags",
|
||||||
|
Usage: "Show flags that have been deprecated",
|
||||||
|
Flags: []cli.Flag{
|
||||||
|
LegacyTestnetFlag,
|
||||||
|
LightLegacyServFlag,
|
||||||
|
LightLegacyPeersFlag,
|
||||||
|
MinerLegacyThreadsFlag,
|
||||||
|
MinerLegacyGasTargetFlag,
|
||||||
|
MinerLegacyGasPriceFlag,
|
||||||
|
MinerLegacyEtherbaseFlag,
|
||||||
|
MinerLegacyExtraDataFlag,
|
||||||
|
},
|
||||||
|
Description: "Show flags that have been deprecated and will soon be removed",
|
||||||
|
}
|
||||||
|
LegacyTestnetFlag = cli.BoolFlag{ // TODO(q9f): Remove after Ropsten is discontinued.
|
||||||
|
Name: "testnet",
|
||||||
|
Usage: "Pre-configured test network (Deprecated: Please choose one of --goerli, --rinkeby, or --ropsten.)",
|
||||||
|
}
|
||||||
|
LightLegacyServFlag = cli.IntFlag{ // Deprecated in favor of light.serve, remove in 2021
|
||||||
|
Name: "lightserv",
|
||||||
|
Usage: "Maximum percentage of time allowed for serving LES requests (deprecated, use --light.serve)",
|
||||||
|
Value: eth.DefaultConfig.LightServ,
|
||||||
|
}
|
||||||
|
LightLegacyPeersFlag = cli.IntFlag{ // Deprecated in favor of light.maxpeers, remove in 2021
|
||||||
|
Name: "lightpeers",
|
||||||
|
Usage: "Maximum number of light clients to serve, or light servers to attach to (deprecated, use --light.maxpeers)",
|
||||||
|
Value: eth.DefaultConfig.LightPeers,
|
||||||
|
}
|
||||||
|
MinerLegacyThreadsFlag = cli.IntFlag{
|
||||||
|
Name: "minerthreads",
|
||||||
|
Usage: "Number of CPU threads to use for mining (deprecated, use --miner.threads)",
|
||||||
|
Value: 0,
|
||||||
|
}
|
||||||
|
MinerLegacyGasTargetFlag = cli.Uint64Flag{
|
||||||
|
Name: "targetgaslimit",
|
||||||
|
Usage: "Target gas floor for mined blocks (deprecated, use --miner.gastarget)",
|
||||||
|
Value: eth.DefaultConfig.Miner.GasFloor,
|
||||||
|
}
|
||||||
|
MinerLegacyGasPriceFlag = BigFlag{
|
||||||
|
Name: "gasprice",
|
||||||
|
Usage: "Minimum gas price for mining a transaction (deprecated, use --miner.gasprice)",
|
||||||
|
Value: eth.DefaultConfig.Miner.GasPrice,
|
||||||
|
}
|
||||||
|
MinerLegacyEtherbaseFlag = cli.StringFlag{
|
||||||
|
Name: "etherbase",
|
||||||
|
Usage: "Public address for block mining rewards (default = first account, deprecated, use --miner.etherbase)",
|
||||||
|
Value: "0",
|
||||||
|
}
|
||||||
|
MinerLegacyExtraDataFlag = cli.StringFlag{
|
||||||
|
Name: "extradata",
|
||||||
|
Usage: "Block extra data set by the miner (default = client version, deprecated, use --miner.extradata)",
|
||||||
|
}
|
||||||
|
RPCLegacyEnabledFlag = cli.BoolFlag{
|
||||||
|
Name: "rpc",
|
||||||
|
Usage: "Enable the HTTP-RPC server (deprecated, use --http)",
|
||||||
|
}
|
||||||
|
RPCLegacyListenAddrFlag = cli.StringFlag{
|
||||||
|
Name: "rpcaddr",
|
||||||
|
Usage: "HTTP-RPC server listening interface (deprecated, use --http.addr)",
|
||||||
|
Value: node.DefaultHTTPHost,
|
||||||
|
}
|
||||||
|
RPCLegacyPortFlag = cli.IntFlag{
|
||||||
|
Name: "rpcport",
|
||||||
|
Usage: "HTTP-RPC server listening port (deprecated, use --http.port)",
|
||||||
|
Value: node.DefaultHTTPPort,
|
||||||
|
}
|
||||||
|
RPCLegacyCORSDomainFlag = cli.StringFlag{
|
||||||
|
Name: "rpccorsdomain",
|
||||||
|
Usage: "Comma separated list of domains from which to accept cross origin requests (browser enforced) (deprecated, use --http.corsdomain)",
|
||||||
|
Value: "",
|
||||||
|
}
|
||||||
|
RPCLegacyVirtualHostsFlag = cli.StringFlag{
|
||||||
|
Name: "rpcvhosts",
|
||||||
|
Usage: "Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard. (deprecated, use --http.vhosts)",
|
||||||
|
Value: strings.Join(node.DefaultConfig.HTTPVirtualHosts, ","),
|
||||||
|
}
|
||||||
|
RPCLegacyApiFlag = cli.StringFlag{
|
||||||
|
Name: "rpcapi",
|
||||||
|
Usage: "API's offered over the HTTP-RPC interface (deprecated, use --http.api)",
|
||||||
|
Value: "",
|
||||||
|
}
|
||||||
|
WSLegacyListenAddrFlag = cli.StringFlag{
|
||||||
|
Name: "wsaddr",
|
||||||
|
Usage: "WS-RPC server listening interface (deprecated, use --ws.addr)",
|
||||||
|
Value: node.DefaultWSHost,
|
||||||
|
}
|
||||||
|
WSLegacyPortFlag = cli.IntFlag{
|
||||||
|
Name: "wsport",
|
||||||
|
Usage: "WS-RPC server listening port (deprecated, use --ws.port)",
|
||||||
|
Value: node.DefaultWSPort,
|
||||||
|
}
|
||||||
|
WSLegacyApiFlag = cli.StringFlag{
|
||||||
|
Name: "wsapi",
|
||||||
|
Usage: "API's offered over the WS-RPC interface (deprecated, use --ws.api)",
|
||||||
|
Value: "",
|
||||||
|
}
|
||||||
|
WSLegacyAllowedOriginsFlag = cli.StringFlag{
|
||||||
|
Name: "wsorigins",
|
||||||
|
Usage: "Origins from which to accept websockets requests (deprecated, use --ws.origins)",
|
||||||
|
Value: "",
|
||||||
|
}
|
||||||
|
GpoLegacyBlocksFlag = cli.IntFlag{
|
||||||
|
Name: "gpoblocks",
|
||||||
|
Usage: "Number of recent blocks to check for gas prices (deprecated, use --gpo.blocks)",
|
||||||
|
Value: eth.DefaultConfig.GPO.Blocks,
|
||||||
|
}
|
||||||
|
GpoLegacyPercentileFlag = cli.IntFlag{
|
||||||
|
Name: "gpopercentile",
|
||||||
|
Usage: "Suggested gas price is the given percentile of a set of recent transaction gas prices (deprecated, use --gpo.percentile)",
|
||||||
|
Value: eth.DefaultConfig.GPO.Percentile,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
func showDeprecated(c *cli.Context) {
|
||||||
|
fmt.Println("--------------------------------------------------------------------")
|
||||||
|
fmt.Println("The following flags are deprecated and will be removed in the future!")
|
||||||
|
fmt.Println("--------------------------------------------------------------------")
|
||||||
|
fmt.Println()
|
||||||
|
|
||||||
|
for _, flag := range c.Command.Flags {
|
||||||
|
fmt.Println(flag.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue