Skip to content

Commit

Permalink
doc/: Doc clarifications regarding connecting and funding.
Browse files Browse the repository at this point in the history
ChangeLog-Fixed: Clarified about connection in documentation.  Also, `fundchannel`  already `connect`s if your node knows how to contact the desired peer for a few versions now, so clarify documentation about this as well.
  • Loading branch information
ZmnSCPxj committed Jan 30, 2020
1 parent 602b81f commit da512e6
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 16 deletions.
4 changes: 4 additions & 0 deletions doc/lightning-connect.7

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions doc/lightning-connect.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ If not specified, the *port* defaults to 9735.
If *host* is not specified, the connection will be attempted to an IP
belonging to *id* obtained through gossip with other already connected
peers.
This can fail if your C-lightning node is a fresh install that has not
connected to any peers yet (your node has no gossip yet),
or if the target *id* is a fresh install that has no channels yet
(nobody will gossip about a node until it has one published channel).

If *host* begins with a */* it is interpreted as a local path, and the
connection will be made to that local socket (see **bind-addr** in
Expand Down
9 changes: 7 additions & 2 deletions doc/lightning-fundchannel.7

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions doc/lightning-fundchannel.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ DESCRIPTION

The **fundchannel** RPC command opens a payment channel with a peer by
committing a funding transaction to the blockchain as defined in BOLT
\#2. **fundchannel** by itself does not attempt to open a connection. A
connection must first be established using **connect**. Once the
\#2.
If not already connected, **fundchannel** will automatically attempt
to connect if C-lightning knows a way to contact the node (either from
normal gossip, or from a previous **connect** call).
This auto-connection can fail if C-lightning does not know how to contact
the target node; see lightning-connect(7).
Once the
transaction is confirmed, normal channel operations may begin. Readiness
is indicated by **listpeers** reporting a *state* of CHANNELD\_NORMAL
for the channel.
Expand Down
22 changes: 12 additions & 10 deletions doc/lightningd.8
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,23 @@ options\.

.SH LOGGING AND COMMANDING C-LIGHTNING

By default, C-Lightning will log to the standard output.
To log to a specific file, use \fB--log-file\fR=\fIPATH\fR.
By default, C-Lightning will log to the standard output\.
To log to a specific file, use \fB--log-file\fR=\fIPATH\fR\.
Sending SIGHUP will cause C-Lightning to reopen this file,
for example to do log rotation.
for example to do log rotation\.


C-Lightning will set up a Unix domain socket for receiving
commands.
commands\.
By default this will be the file \fBlightning-rpc\fR in your
specified \fBlightning-dir\fR.
You can use lightning-cli(1) to send commands to C-Lightning
specified \fBlightning-dir\fR\.
You can use \fBlightning-cli\fR(1) to send commands to C-Lightning
once \fBlightningd\fR has started; you need to match the
\fB--lightning-dir\fR and \fB--rpc-file\fR options between them.
\fB--lightning-dir\fR and \fB--rpc-file\fR options between them\.


Commands for C-Lightning are described in various manpages
in section 7, with the common prefix \fBlightning-\fR.
in section 7, with the common prefix \fBlightning-\fR\.

.SH QUICK START

Expand Down Expand Up @@ -174,11 +176,11 @@ key is a long hex string, like so:


After determining a public key, use \fBlightning-connect\fR(7) to connect to
that public key:
that public key at that IP:

.nf
.RS
$ lightning-cli connect $PUBLICKEY
$ lightning-cli connect $PUBLICKEY $IP


.RE
Expand Down
4 changes: 2 additions & 2 deletions doc/lightningd.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ key is a long hex string, like so:
(this example public key is not used as of this writing)

After determining a public key, use lightning-connect(7) to connect to
that public key:
that public key at that IP:

$ lightning-cli connect $PUBLICKEY
$ lightning-cli connect $PUBLICKEY $IP

Then open a channel to that node using lightning-fundchannel(7):

Expand Down

0 comments on commit da512e6

Please sign in to comment.