Add missing usage/command flags declaration for Ellaism

This commit is contained in:
Ellaismer 2018-03-27 03:22:03 -04:00
parent 5525c96bb5
commit 08d54357f5
4 changed files with 5 additions and 0 deletions

View file

@ -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",

View file

@ -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)

View file

@ -109,6 +109,7 @@ var (
utils.DeveloperFlag,
utils.DeveloperPeriodFlag,
utils.TestnetFlag,
utils.EllaismFlag,
utils.RinkebyFlag,
utils.VMEnableDebugFlag,
utils.NetworkIdFlag,

View file

@ -73,6 +73,7 @@ var AppHelpFlagGroups = []flagGroup{
utils.NoUSBFlag,
utils.NetworkIdFlag,
utils.TestnetFlag,
utils.EllaismFlag,
utils.RinkebyFlag,
utils.SyncModeFlag,
utils.GCModeFlag,