From 0c1b619e53ac88ad53f3a88e5d1129c25ddeaf13 Mon Sep 17 00:00:00 2001 From: Alex Gessner Date: Sun, 18 Mar 2018 18:09:22 -0500 Subject: [PATCH] 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. --- sample-lnd.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sample-lnd.conf b/sample-lnd.conf index 2bac475b..59fe1f8a 100644 --- a/sample-lnd.conf +++ b/sample-lnd.conf @@ -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]