docs: move defaultchanconfs setting in sample-lnd.conf to bitcoin section

Since https://github.com/lightningnetwork/lnd/pull/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.
This commit is contained in:
Alex Gessner 2018-03-18 18:09:22 -05:00 committed by Olaoluwa Osuntokun
parent ce85632390
commit 0c1b619e53

@ -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.
@ -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]