From 32e1c5ad4d6e57e4d555577fa586324f10b7319e Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Mon, 26 Nov 2018 13:54:28 +0800 Subject: core: add Taipei testnet (#47) Add a new testnet named Taipei. --- cmd/gdex/consolecmd.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd/gdex/consolecmd.go') diff --git a/cmd/gdex/consolecmd.go b/cmd/gdex/consolecmd.go index 9915e1ee0..8b9d58dad 100644 --- a/cmd/gdex/consolecmd.go +++ b/cmd/gdex/consolecmd.go @@ -124,6 +124,8 @@ func remoteConsole(ctx *cli.Context) error { if path != "" { if ctx.GlobalBool(utils.TestnetFlag.Name) { path = filepath.Join(path, "testnet") + } else if ctx.GlobalBool(utils.TaipeiFlag.Name) { + path = filepath.Join(path, "taipei") } } endpoint = fmt.Sprintf("%s/gdex.ipc", path) -- cgit v1.2.3