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@byzantine-lab.io>2019-06-12 17:26:28 +0800
commit85d795d9314ef80d667c17318342515ea4798dec (patch)
tree3afcfa4103e8a04279784bdfdd03b69733dbd41c /cmd/geth/consolecmd.go
parent856a327e813a05a2a7706efc82d813234fb2e349 (diff)
downloadgo-tangerine-85d795d9314ef80d667c17318342515ea4798dec.tar
go-tangerine-85d795d9314ef80d667c17318342515ea4798dec.tar.gz
go-tangerine-85d795d9314ef80d667c17318342515ea4798dec.tar.bz2
go-tangerine-85d795d9314ef80d667c17318342515ea4798dec.tar.lz
go-tangerine-85d795d9314ef80d667c17318342515ea4798dec.tar.xz
go-tangerine-85d795d9314ef80d667c17318342515ea4798dec.tar.zst
go-tangerine-85d795d9314ef80d667c17318342515ea4798dec.zip
Remove reference of Rinkeby and Goerli network.
We do not need ethereum Rinkeby and Goerli 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)