File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ func init() {
55
55
// Initialize the CLI app and start Geth
56
56
app .Action = geth
57
57
app .HideVersion = true // we have a command to print the version
58
- app .Copyright = "Copyright 2013-2016 The go-ethereum Authors"
58
+ app .Copyright = "Copyright 2013-2017 The go-ethereum Authors"
59
59
app .Commands = []cli.Command {
60
60
// See chaincmd.go:
61
61
initCommand ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import (
30
30
var AppHelpTemplate = `NAME:
31
31
{{.App.Name}} - {{.App.Usage}}
32
32
33
- Copyright 2013-2016 The go-ethereum Authors
33
+ Copyright 2013-2017 The go-ethereum Authors
34
34
35
35
USAGE:
36
36
{{.App.HelpName}} [options]{{if .App.Commands}} command [command options]{{end}} {{if .App.ArgsUsage}}{{.App.ArgsUsage}}{{else}}[arguments...]{{end}}
@@ -64,14 +64,15 @@ var AppHelpFlagGroups = []flagGroup{
64
64
{
65
65
Name : "ETHEREUM" ,
66
66
Flags : []cli.Flag {
67
+ configFileFlag ,
67
68
utils .DataDirFlag ,
68
69
utils .KeyStoreDirFlag ,
69
70
utils .NetworkIdFlag ,
70
71
utils .TestNetFlag ,
71
72
utils .DevModeFlag ,
73
+ utils .SyncModeFlag ,
74
+ utils .EthStatsURLFlag ,
72
75
utils .IdentityFlag ,
73
- utils .FastSyncFlag ,
74
- utils .LightModeFlag ,
75
76
utils .LightServFlag ,
76
77
utils .LightPeersFlag ,
77
78
utils .LightKDFFlag ,
@@ -132,6 +133,7 @@ var AppHelpFlagGroups = []flagGroup{
132
133
utils .NATFlag ,
133
134
utils .NoDiscoverFlag ,
134
135
utils .DiscoveryV5Flag ,
136
+ utils .NetrestrictFlag ,
135
137
utils .NodeKeyFileFlag ,
136
138
utils .NodeKeyHexFlag ,
137
139
},
@@ -163,11 +165,18 @@ var AppHelpFlagGroups = []flagGroup{
163
165
{
164
166
Name : "LOGGING AND DEBUGGING" ,
165
167
Flags : append ([]cli.Flag {
166
- utils .EthStatsURLFlag ,
167
168
utils .MetricsEnabledFlag ,
168
169
utils .FakePoWFlag ,
170
+ utils .NoCompactionFlag ,
169
171
}, debug .Flags ... ),
170
172
},
173
+ {
174
+ Name : "DEPRECATED" ,
175
+ Flags : []cli.Flag {
176
+ utils .FastSyncFlag ,
177
+ utils .LightModeFlag ,
178
+ },
179
+ },
171
180
{
172
181
Name : "EXPERIMENTAL" ,
173
182
Flags : []cli.Flag {
You can’t perform that action at this time.
0 commit comments