Skip to content
This repository was archived by the owner on Dec 11, 2019. It is now read-only.

Commit 22f0e96

Browse files
committed
Not using a named pipe for geth.pid
1 parent 9a22ba4 commit 22f0e96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/ethWallet-geth.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const isWindows = process.platform === 'win32'
2525
const gethProcessKey = isWindows ? 'geth.exe' : 'geth'
2626

2727
const ipcPath = isWindows ? '\\\\.\\pipe\\geth.ipc' : path.join(gethDataDir, 'geth.ipc')
28-
const pidPath = isWindows ? '\\\\.\\pipe\\geth.pid' : path.join(gethDataDir, 'geth.pid')
28+
const pidPath = path.join(gethDataDir, 'geth.pid')
2929
const pwPath = path.join(gethDataDir, 'wallets.pw')
3030
const gethProcessPath = path.join(getExtensionsPath('bin'), gethProcessKey)
3131

0 commit comments

Comments
 (0)