Skip to content

Commit

Permalink
cmd/geth: avoid hard coding the IPC name (#30687)
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe authored Oct 28, 2024
1 parent c3919f9 commit bce420b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/geth/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit bce420b

Please sign in to comment.