Browse Source
Merge pull request #635 from mrfelton/fix/windows-lnd-data-dir
fix(windows): read lnd config from %LOCALAPPDATA%
renovate/lint-staged-8.x
JimmyMow
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
app/lnd/config/index.js
|
|
@ -34,7 +34,7 @@ switch (plat) { |
|
|
|
lndBin = 'lnd' |
|
|
|
break |
|
|
|
case 'win32': |
|
|
|
lndDataDir = join(process.env.APPDATA, 'Local', 'Lnd') |
|
|
|
lndDataDir = join(process.env.LOCALAPPDATA, 'Local', 'Lnd') |
|
|
|
lndBin = 'lnd.exe' |
|
|
|
break |
|
|
|
default: |
|
|
|