From 08d54357f5768aa640a35fe47dc9717b906001fa Mon Sep 17 00:00:00 2001 From: Ellaismer Date: Tue, 27 Mar 2018 03:22:03 -0400 Subject: [PATCH] Add missing usage/command flags declaration for Ellaism --- cmd/geth/chaincmd.go | 1 + cmd/geth/consolecmd.go | 2 ++ cmd/geth/main.go | 1 + cmd/geth/usage.go | 1 + 4 files changed, 5 insertions(+) diff --git a/cmd/geth/chaincmd.go b/cmd/geth/chaincmd.go index d3086921b9..db4c72ee6d 100644 --- a/cmd/geth/chaincmd.go +++ b/cmd/geth/chaincmd.go @@ -135,6 +135,7 @@ The export-preimages command export hash preimages to an RLP encoded stream`, utils.SyncModeFlag, utils.FakePoWFlag, utils.TestnetFlag, + utils.EllaismFlag, utils.RinkebyFlag, }, Category: "BLOCKCHAIN COMMANDS", diff --git a/cmd/geth/consolecmd.go b/cmd/geth/consolecmd.go index 2500a969cf..e50b0a87b5 100644 --- a/cmd/geth/consolecmd.go +++ b/cmd/geth/consolecmd.go @@ -126,6 +126,8 @@ func remoteConsole(ctx *cli.Context) error { path = filepath.Join(path, "testnet") } else if ctx.GlobalBool(utils.RinkebyFlag.Name) { path = filepath.Join(path, "rinkeby") + } else if ctx.GlobalBool(utils.EllaismFlag.Name) { + path = filepath.Join(path, "ellaism") } } endpoint = fmt.Sprintf("%s/geth.ipc", path) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 061384d1b3..35b2a6b8a3 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -109,6 +109,7 @@ var ( utils.DeveloperFlag, utils.DeveloperPeriodFlag, utils.TestnetFlag, + utils.EllaismFlag, utils.RinkebyFlag, utils.VMEnableDebugFlag, utils.NetworkIdFlag, diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go index a1558c2330..9df208967a 100644 --- a/cmd/geth/usage.go +++ b/cmd/geth/usage.go @@ -73,6 +73,7 @@ var AppHelpFlagGroups = []flagGroup{ utils.NoUSBFlag, utils.NetworkIdFlag, utils.TestnetFlag, + utils.EllaismFlag, utils.RinkebyFlag, utils.SyncModeFlag, utils.GCModeFlag,