Update lnd.conf syntax in the README
See original GitHub issueThe README currently specifies the following configuration for the lnd.conf
file.
[Application Options]
httpslisten=0.0.0.0:8000
uipassword=Pa55w0rd
lnd.debuglevel=debug
[Bitcoin]
lnd.bitcoin.active
lnd.bitcoin.testnet
lnd.bitcoin.node=neutrino
[Neutrino]
lnd.neutrino.addpeer=btcd-testnet.lightning.computer
lnd.neutrino.feeurl=https://nodes.lightning.computer/fees/v1/btc-fee-estimates.json
[Loop]
loop.loopoutmaxparts=5
[Faraday]
faraday.min_monitored=48h
The lines lnd.bitcoin.active
and lnd.bitcoin.testnet
are not valid. They must contain =1
to specify a true value. These values can be ommitted on the command line, bu not in the config file.
The README should be updated with the correct values.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:6 (2 by maintainers)
Top Results From Across the Web
lnd.conf - Builder's Guide
lnd.conf. The LND configuration file can be edited to customize your Lightning Network node. The LND configuration file is found in your LND...
Read more >[GUIDE] Installing charge-lnd (in a docker) to automate your ...
I had a syntax error in the config file. Once I fixed that it worked again. satsophone September 26, 2021, 2:16am #46.
Read more >Lightning Network FAQ - BTCPay Server
Which macaroon needs to be provided for external nodes? LND connection issues after an update; How to change my LND Node alias? How...
Read more >Setup LNbits on a VPS, connected to your Lightning Network ...
Update your packages: apt-get update and apt-get upgrade; Install Docker: apt-get install ... your current LND Node configuration is listening on port 9735, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Perhaps litd should have its own configfile? It’s structured quite differently from
lnd.conf
at this point. At least that way it’s clear to new users that a whole new config needs to be worked up.It appears that the
[Bitcoin]
header is the culprit in causing the conf file to fail to load. I’ll get this fixed in the README asap. Thank for the additional info.