aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/consolecmd.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-20 17:01:15 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-12 12:19:09 +0800
commit174b8c3bc1202de027b62fb1d995df3c69bdb254 (patch)
tree5ad4c92e1af933147523b2a0571c0bc4f3ae39f6 /cmd/geth/consolecmd.go
parent73b611e6530cfeae090fa3c38402bf74fce281e7 (diff)
downloaddexon-174b8c3bc1202de027b62fb1d995df3c69bdb254.tar.gz
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/consolecmd.go')
-rw-r--r--cmd/geth/consolecmd.go2
1 files changed, 0 insertions, 2 deletions
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)