aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-03 23:26:57 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-03 23:26:57 +0800
commit4dfcd6012b17032ca3bb06afb76b9b283578b82a (patch)
tree9324e07fd8a8a978182be5af466e432d6d19631d /cmd
parent546c0f631c77be253d1293b82cf3843d752a2ae2 (diff)
parente8c1399bbf08234389f0e8f5da08f146856dab12 (diff)
downloadgo-tangerine-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar
go-tangerine-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.gz
go-tangerine-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.bz2
go-tangerine-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.lz
go-tangerine-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.xz
go-tangerine-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.zst
go-tangerine-4dfcd6012b17032ca3bb06afb76b9b283578b82a.zip
Merge pull request #1392 from bas-vk/ipcpipelining
Several bugfixes to IPC channel
Diffstat (limited to 'cmd')
-rw-r--r--cmd/utils/flags.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index f27f1bbcd..b4182ff59 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -432,17 +432,17 @@ func MakeAccountManager(ctx *cli.Context) *accounts.Manager {
func IpcSocketPath(ctx *cli.Context) (ipcpath string) {
if common.IsWindows() {
ipcpath = common.DefaultIpcPath()
- if ipcpath != ctx.GlobalString(IPCPathFlag.Name) {
+ if ctx.GlobalIsSet(IPCPathFlag.Name) {
ipcpath = ctx.GlobalString(IPCPathFlag.Name)
}
} else {
ipcpath = common.DefaultIpcPath()
- if ctx.GlobalString(IPCPathFlag.Name) != common.DefaultIpcPath() {
- ipcpath = ctx.GlobalString(IPCPathFlag.Name)
- } else if ctx.GlobalString(DataDirFlag.Name) != "" &&
- ctx.GlobalString(DataDirFlag.Name) != common.DefaultDataDir() {
+ if ctx.GlobalIsSet(DataDirFlag.Name) {
ipcpath = filepath.Join(ctx.GlobalString(DataDirFlag.Name), "geth.ipc")
}
+ if ctx.GlobalIsSet(IPCPathFlag.Name) {
+ ipcpath = ctx.GlobalString(IPCPathFlag.Name)
+ }
}
return