Skip to content

Commit

Permalink
cmd/utils: point users to --syncmode under DEPRECATED (ethereum#16572)
Browse files Browse the repository at this point in the history
Indicate that --light and --fast options are replaced by --syncmode
  • Loading branch information
martinklepsch authored and kimmyeonghun committed Jul 3, 2018
1 parent da9650b commit 3ae46af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ var (
}
FastSyncFlag = cli.BoolFlag{
Name: "fast",
Usage: "Enable fast syncing through state downloads",
Usage: "Enable fast syncing through state downloads (replaced by --syncmode)",
}
LightModeFlag = cli.BoolFlag{
Name: "light",
Usage: "Enable light client mode",
Usage: "Enable light client mode (replaced by --syncmode)",
}
defaultSyncMode = eth.DefaultConfig.SyncMode
SyncModeFlag = TextMarshalerFlag{
Expand Down

0 comments on commit 3ae46af

Please sign in to comment.