diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-20 17:01:15 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 174b8c3bc1202de027b62fb1d995df3c69bdb254 (patch) | |
tree | 5ad4c92e1af933147523b2a0571c0bc4f3ae39f6 /cmd/geth | |
parent | 73b611e6530cfeae090fa3c38402bf74fce281e7 (diff) | |
download | dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.gz dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.bz2 dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.lz dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.xz dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.zst dexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.zip |
Remove reference of Rinkeby network.
We do not need ethereum Rinkeby network in our system, remove it.
Diffstat (limited to 'cmd/geth')
-rw-r--r-- | cmd/geth/chaincmd.go | 1 | ||||
-rw-r--r-- | cmd/geth/consolecmd.go | 2 | ||||
-rw-r--r-- | cmd/geth/main.go | 2 | ||||
-rw-r--r-- | cmd/geth/usage.go | 2 |
4 files changed, 0 insertions, 7 deletions
diff --git a/cmd/geth/chaincmd.go b/cmd/geth/chaincmd.go index 63850304a..ce4216a94 100644 --- a/cmd/geth/chaincmd.go +++ b/cmd/geth/chaincmd.go @@ -135,7 +135,6 @@ The export-preimages command export hash preimages to an RLP encoded stream`, utils.SyncModeFlag, utils.FakePoWFlag, utils.TestnetFlag, - utils.RinkebyFlag, }, Category: "BLOCKCHAIN COMMANDS", Description: ` diff --git a/cmd/geth/consolecmd.go b/cmd/geth/consolecmd.go index 528ed30e3..339919c8d 100644 --- a/cmd/geth/consolecmd.go +++ b/cmd/geth/consolecmd.go @@ -124,8 +124,6 @@ func remoteConsole(ctx *cli.Context) error { if path != "" { if ctx.GlobalBool(utils.TestnetFlag.Name) { path = filepath.Join(path, "testnet") - } else if ctx.GlobalBool(utils.RinkebyFlag.Name) { - path = filepath.Join(path, "rinkeby") } } endpoint = fmt.Sprintf("%s/geth.ipc", path) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 7edefbc20..eb643f198 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -120,8 +120,6 @@ var ( utils.DeveloperFlag, utils.DeveloperPeriodFlag, utils.TestnetFlag, - utils.RinkebyFlag, - utils.GoerliFlag, utils.VMEnableDebugFlag, utils.NetworkIdFlag, utils.ConstantinopleOverrideFlag, diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go index 6b30c3cd6..a0713e831 100644 --- a/cmd/geth/usage.go +++ b/cmd/geth/usage.go @@ -73,8 +73,6 @@ var AppHelpFlagGroups = []flagGroup{ utils.NoUSBFlag, utils.NetworkIdFlag, utils.TestnetFlag, - utils.RinkebyFlag, - utils.GoerliFlag, utils.SyncModeFlag, utils.GCModeFlag, utils.EthStatsURLFlag, |