diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-12 02:35:19 +0800 |
---|---|---|
committer | Bas van Kervel <bas@ethdev.com> | 2015-06-12 02:35:19 +0800 |
commit | 22080e1fdd8eafd6201bb5a06ac19859bcc6b432 (patch) | |
tree | a243246b02d85a2ffd60f66347e83bd536038fe9 /cmd/geth | |
parent | e2c2d8e15ebef85c77f7486f92c6430ca6f30785 (diff) | |
download | go-tangerine-22080e1fdd8eafd6201bb5a06ac19859bcc6b432.tar.gz go-tangerine-22080e1fdd8eafd6201bb5a06ac19859bcc6b432.tar.zst go-tangerine-22080e1fdd8eafd6201bb5a06ac19859bcc6b432.zip |
ipc socket always used default path
Diffstat (limited to 'cmd/geth')
-rw-r--r-- | cmd/geth/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 8e55b310c..11ea23165 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -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, ) |