diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-12 19:39:38 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-12 19:39:38 +0800 |
commit | aaac1f0cdd7a583448b71b26866f70f5f065378d (patch) | |
tree | b062611219238127f6cd60daae698751a396acd3 /cmd/console | |
parent | 4bb9a61049882f427e2742773c69b969849da1c2 (diff) | |
parent | 55a796b7c3a9560f27b0bfc7fe064e84d1b36608 (diff) | |
download | dexon-aaac1f0cdd7a583448b71b26866f70f5f065378d.tar dexon-aaac1f0cdd7a583448b71b26866f70f5f065378d.tar.gz dexon-aaac1f0cdd7a583448b71b26866f70f5f065378d.tar.bz2 dexon-aaac1f0cdd7a583448b71b26866f70f5f065378d.tar.lz dexon-aaac1f0cdd7a583448b71b26866f70f5f065378d.tar.xz dexon-aaac1f0cdd7a583448b71b26866f70f5f065378d.tar.zst dexon-aaac1f0cdd7a583448b71b26866f70f5f065378d.zip |
Merge pull request #1254 from bas-vk/ipcwindowspathfix
Invalid named pipe name
Diffstat (limited to 'cmd/console')
-rw-r--r-- | cmd/console/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/console/main.go b/cmd/console/main.go index 9020a12fe..e8dd412ba 100644 --- a/cmd/console/main.go +++ b/cmd/console/main.go @@ -52,7 +52,6 @@ func init() { app.Action = run app.Flags = []cli.Flag{ - utils.IPCDisabledFlag, utils.IPCPathFlag, utils.VerbosityFlag, utils.JSpathFlag, @@ -93,7 +92,7 @@ func main() { func run(ctx *cli.Context) { jspath := ctx.GlobalString(utils.JSpathFlag.Name) - ipcpath := ctx.GlobalString(utils.IPCPathFlag.Name) + ipcpath := utils.IpcSocketPath(ctx) repl := newJSRE(jspath, ipcpath) repl.welcome(ipcpath) |