Closed lundy405 closed 6 years ago
When running in a Windows environment, the default LND folder is not found.
Fixed by changing line 23 in util.js to: else return path.join(os.homedir(), '/AppData/Local/Lnd');
else return path.join(os.homedir(), '/AppData/Local/Lnd');
Ideally there could be another "if platform" for Windows.
When running in a Windows environment, the default LND folder is not found.
Fixed by changing line 23 in util.js to:
else return path.join(os.homedir(), '/AppData/Local/Lnd');
Ideally there could be another "if platform" for Windows.