diff options
Diffstat (limited to 'cmd/geth/usage.go')
-rw-r--r-- | cmd/geth/usage.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go index 2ba504fdd..4a3e22af8 100644 --- a/cmd/geth/usage.go +++ b/cmd/geth/usage.go @@ -24,6 +24,7 @@ import ( "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/internal/debug" + "github.com/ethereum/go-ethereum/whisper/whisperv5" "gopkg.in/urfave/cli.v1" ) @@ -188,6 +189,10 @@ var AppHelpFlagGroups = []flagGroup{ }, debug.Flags...), }, { + Name: "Whisper (EXPERIMENTAL)", + Flags: whisperv5.Flags, + }, + { Name: "DEPRECATED", Flags: []cli.Flag{ utils.FastSyncFlag, @@ -195,10 +200,7 @@ var AppHelpFlagGroups = []flagGroup{ }, }, { - Name: "EXPERIMENTAL", - Flags: []cli.Flag{ - utils.WhisperEnabledFlag, - }, + Name: "MISC", }, } |