diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-10-30 01:53:24 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-10-30 17:33:12 +0800 |
commit | 3c6e285d3bfa03935f4f346a2cb32236143e2fca (patch) | |
tree | b433f27f43ebfab6efb06cfbb0d4d8db039fbefc /cmd/geth/main.go | |
parent | fd27f074feecec2f1e4c8041ff04ddac8d0ab6a3 (diff) | |
download | dexon-3c6e285d3bfa03935f4f346a2cb32236143e2fca.tar.gz dexon-3c6e285d3bfa03935f4f346a2cb32236143e2fca.tar.zst dexon-3c6e285d3bfa03935f4f346a2cb32236143e2fca.zip |
cmd/geth, cmd/utils, eth: group CLI flags by purpose
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 8bdc01999..f752029b7 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -74,7 +74,7 @@ func init() { { Action: blockRecovery, Name: "recover", - Usage: "attempts to recover a corrupted database by setting a new block by number or hash. See help recover.", + Usage: "Attempts to recover a corrupted database by setting a new block by number or hash", Description: ` The recover commands will attempt to read out the last block based on that. @@ -339,10 +339,8 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso utils.RPCCORSDomainFlag, utils.VerbosityFlag, utils.BacktraceAtFlag, - utils.LogToStdErrFlag, utils.LogVModuleFlag, utils.LogFileFlag, - utils.LogJSONFlag, utils.PProfEanbledFlag, utils.PProfPortFlag, utils.MetricsEnabledFlag, @@ -402,7 +400,6 @@ func makeDefaultExtra() []byte { glog.V(logger.Debug).Infof("extra: %x\n", extra) return nil } - return extra } |