diff --git a/cmd/geth/config.go b/cmd/geth/config.go index 8282c80c41..a7f894ab37 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -132,7 +132,7 @@ func defaultNodeConfig() node.Config { cfg.Version = version.WithCommit(git.Commit, git.Date) cfg.HTTPModules = append(cfg.HTTPModules, "eth") cfg.WSModules = append(cfg.WSModules, "eth") - cfg.IPCPath = "geth.ipc" + cfg.IPCPath = clientIdentifier + ".ipc" return cfg }