altangent / lnd-async

Lightning Network Daemon gRPC async client
MIT License
21 stars 12 forks source link

Windows LND Home Path in util.js #4

Closed lundy405 closed 6 years ago

lundy405 commented 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');

Ideally there could be another "if platform" for Windows.