mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
87 lines
1.5 KiB
Groff
87 lines
1.5 KiB
Groff
.TH "LIGHTNING-DISCONNECT" "7" "" "" "lightning-disconnect"
|
||
.SH NAME
|
||
|
||
|
||
lightning-disconnect - Command for disconnecting from another lightning
|
||
node\.
|
||
|
||
.SH SYNOPSIS
|
||
|
||
\fBdisconnect\fR \fIid\fR [\fIforce\fR]
|
||
|
||
.SH DESCRIPTION
|
||
|
||
The disconnect RPC command closes an existing connection to a peer,
|
||
identified by \fIid\fR, in the Lightning Network, as long as it doesn’t have
|
||
an active channel\. If \fIforce\fR is set then it will disconnect even with
|
||
an active channel\.
|
||
|
||
|
||
The \fIid\fR can be discovered in the output of the listpeers command, which
|
||
returns a set of peers:
|
||
|
||
.nf
|
||
.RS
|
||
{
|
||
"peers": [
|
||
{
|
||
"id": "0563aea81...",
|
||
"connected": true,
|
||
...
|
||
}
|
||
]
|
||
}
|
||
|
||
|
||
.RE
|
||
|
||
.fi
|
||
|
||
Passing the \fIid\fR attribute of a peer to \fIdisconnect\fR will terminate the
|
||
connection\.
|
||
|
||
.SH RETURN VALUE
|
||
|
||
On success, an empty object is returned\.
|
||
|
||
.SH ERRORS
|
||
|
||
If \fIid\fR is invalid, an error message will be returned:
|
||
|
||
.nf
|
||
.RS
|
||
{ "code" : -1, "message" : "Peer not connected" }
|
||
|
||
|
||
.RE
|
||
|
||
.fi
|
||
|
||
If the peer has an active channel and \fIforce\fR is not set, an error
|
||
message will be returned:
|
||
|
||
.nf
|
||
.RS
|
||
{ "code" : -1, "message" : "Peer is in state CHANNELD_NORMAL" }
|
||
|
||
|
||
.RE
|
||
|
||
.fi
|
||
.SH AUTHOR
|
||
|
||
Michael Hawkins \fBNone\fR (\fI<michael.hawkins@protonmail.com\fR)>\.
|
||
|
||
.SH SEE ALSO
|
||
|
||
\fBlightning-connect\fR(1), \fBlightning-listpeers\fR(1)
|
||
|
||
.SH RESOURCES
|
||
|
||
Main web site: \fBNone\fR (\fIhttps://github.com/ElementsProject/lightning\fR)
|
||
|
||
.HL
|
||
|
||
Last updated 2019-04-30 17:34:18 CEST
|
||
|