From bce420b99fd8b5a7a35a9f38b5246f8e2219acbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Mon, 28 Oct 2024 22:29:25 +0200 Subject: [PATCH] cmd/geth: avoid hard coding the IPC name (#30687) --- cmd/geth/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }