forked from cerc-io/plugeth
Merge pull request #1245 from bas-vk/ipcdatadirfix
ipc socket always uses default path
This commit is contained in:
commit
4bb9a61049
@ -308,7 +308,7 @@ func console(ctx *cli.Context) {
|
||||
ethereum,
|
||||
ctx.String(utils.JSpathFlag.Name),
|
||||
ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
|
||||
ctx.GlobalString(utils.IPCPathFlag.Name),
|
||||
filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), "geth.ipc"),
|
||||
true,
|
||||
nil,
|
||||
)
|
||||
|
@ -387,7 +387,7 @@ func MakeAccountManager(ctx *cli.Context) *accounts.Manager {
|
||||
|
||||
func StartIPC(eth *eth.Ethereum, ctx *cli.Context) error {
|
||||
config := comms.IpcConfig{
|
||||
Endpoint: ctx.GlobalString(IPCPathFlag.Name),
|
||||
Endpoint: filepath.Join(ctx.GlobalString(DataDirFlag.Name), "geth.ipc"),
|
||||
}
|
||||
|
||||
xeth := xeth.New(eth, nil)
|
||||
|
Loading…
Reference in New Issue
Block a user