Skip to content

Commit 856f807

Browse files
karalabeholiman
authored andcommitted
cmd/geth: avoid hard coding the IPC name (#30687)
1 parent 571628a commit 856f807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/geth/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func defaultNodeConfig() node.Config {
132132
cfg.Version = version.WithCommit(git.Commit, git.Date)
133133
cfg.HTTPModules = append(cfg.HTTPModules, "eth")
134134
cfg.WSModules = append(cfg.WSModules, "eth")
135-
cfg.IPCPath = "geth.ipc"
135+
cfg.IPCPath = clientIdentifier + ".ipc"
136136
return cfg
137137
}
138138

0 commit comments

Comments
 (0)