mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-16 15:18:46 +00:00
ipcpath issue fix
This commit is contained in:
parent
c2590af7fd
commit
89525fcb4e
@ -438,17 +438,17 @@ func MakeAccountManager(ctx *cli.Context) *accounts.Manager {
|
|||||||
func IpcSocketPath(ctx *cli.Context) (ipcpath string) {
|
func IpcSocketPath(ctx *cli.Context) (ipcpath string) {
|
||||||
if common.IsWindows() {
|
if common.IsWindows() {
|
||||||
ipcpath = common.DefaultIpcPath()
|
ipcpath = common.DefaultIpcPath()
|
||||||
if ipcpath != ctx.GlobalString(IPCPathFlag.Name) {
|
if ctx.GlobalIsSet(IPCPathFlag.Name) {
|
||||||
ipcpath = ctx.GlobalString(IPCPathFlag.Name)
|
ipcpath = ctx.GlobalString(IPCPathFlag.Name)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ipcpath = common.DefaultIpcPath()
|
ipcpath = common.DefaultIpcPath()
|
||||||
if ctx.GlobalString(IPCPathFlag.Name) != common.DefaultIpcPath() {
|
if ctx.GlobalIsSet(DataDirFlag.Name) {
|
||||||
ipcpath = ctx.GlobalString(IPCPathFlag.Name)
|
|
||||||
} else if ctx.GlobalString(DataDirFlag.Name) != "" &&
|
|
||||||
ctx.GlobalString(DataDirFlag.Name) != common.DefaultDataDir() {
|
|
||||||
ipcpath = filepath.Join(ctx.GlobalString(DataDirFlag.Name), "geth.ipc")
|
ipcpath = filepath.Join(ctx.GlobalString(DataDirFlag.Name), "geth.ipc")
|
||||||
}
|
}
|
||||||
|
if ctx.GlobalIsSet(IPCPathFlag.Name) {
|
||||||
|
ipcpath = ctx.GlobalString(IPCPathFlag.Name)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user