aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/main.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-10-30 17:59:36 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-10-30 17:59:36 +0800
commit98b036ddb637e11aec4112054495672eff295092 (patch)
tree9cb4726b20db2abfea3cecbd0b12e7c78d122953 /cmd/geth/main.go
parent1abbe05e933ecdee7e3d1bf286745425e6a474f4 (diff)
parent3c6e285d3bfa03935f4f346a2cb32236143e2fca (diff)
downloaddexon-98b036ddb637e11aec4112054495672eff295092.tar
dexon-98b036ddb637e11aec4112054495672eff295092.tar.gz
dexon-98b036ddb637e11aec4112054495672eff295092.tar.bz2
dexon-98b036ddb637e11aec4112054495672eff295092.tar.lz
dexon-98b036ddb637e11aec4112054495672eff295092.tar.xz
dexon-98b036ddb637e11aec4112054495672eff295092.tar.zst
dexon-98b036ddb637e11aec4112054495672eff295092.zip
Merge pull request #1949 from karalabe/update-command-usage
cmd/geth, cmd/utils, eth: group CLI flags by purpose
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r--cmd/geth/main.go5
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
}