Skip to content

Commit

Permalink
docs: move defaultchanconfs setting in sample-lnd.conf to bitcoin sec…
Browse files Browse the repository at this point in the history
…tion

Since lightningnetwork#506, `defaultchanconfs` is nested under `bitcoin`. Using this parameter at the top level generates a warning message:
```
2018-03-17 23:07:08.273 [WRN] LTND: /home/bitcoin/.lnd/lnd.conf:7: unknown option: defaultchanconfs
```
and using it nested under `bitcoin` does not.
  • Loading branch information
xgess authored and Roasbeef committed Mar 18, 2018
1 parent ce85632 commit 0c1b619
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sample-lnd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,6 @@
; The maximum number of incoming pending channels permitted per peer.
; maxpendingchannels=1

; The default number of confirmations a channel must have before it's considered
; open. We'll require any incoming channel requests to wait this many
; confirmations before we consider the channel active.
; defaultchanconfs=3

; If true, then automatic network bootstrapping will not be attempted. This
; means that your node won't attempt to automatically seek out peers on the
; network.
Expand Down Expand Up @@ -138,6 +133,11 @@ bitcoin.node=btcd
; Use the neutrino (light client) back-end
; bitcoin.node=neutrino

; The default number of confirmations a channel must have before it's considered
; open. We'll require any incoming channel requests to wait this many
; confirmations before we consider the channel active.
; bitcoin.defaultchanconfs=3


[Btcd]

Expand Down

0 comments on commit 0c1b619

Please sign in to comment.