2021-03-09 22:14:08 +01:00
|
|
|
lightning-openchannel\_abort -- Command to abort a channel to a peer
|
|
|
|
=====================================================================
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
|
|
|
|
**openchannel_abort** *channel_id*
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
`openchannel_init` is a low level RPC command which initiates a channel
|
|
|
|
open with a specified peer. It uses the openchannel protocol
|
|
|
|
which allows for interactive transaction construction.
|
|
|
|
|
|
|
|
*channel_id* is id of this channel.
|
|
|
|
|
|
|
|
|
|
|
|
RETURN VALUE
|
|
|
|
------------
|
|
|
|
|
2021-06-16 03:10:17 +02:00
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-START)
|
|
|
|
On success, an object is returned, containing:
|
|
|
|
- **channel_id** (hex): the channel id of the aborted channel (always 64 characters)
|
2021-07-08 23:23:16 +02:00
|
|
|
- **channel_canceled** (boolean): whether this is completely canceled (there may be remaining in-flight transactions)
|
2021-06-16 03:10:17 +02:00
|
|
|
- **reason** (string): usually "Abort requested", but if it happened to fail at the same time it could be different
|
2021-09-03 12:07:59 +02:00
|
|
|
|
2021-06-16 03:10:17 +02:00
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-END)
|
2021-03-09 22:14:08 +01:00
|
|
|
|
|
|
|
On error the returned object will contain `code` and `message` properties,
|
|
|
|
with `code` being one of the following:
|
|
|
|
|
|
|
|
- -32602: If the given parameters are wrong.
|
|
|
|
- -1: Catchall nonspecific error.
|
|
|
|
- 305: Peer is not connected.
|
|
|
|
- 311: Unknown channel id.
|
|
|
|
- 312: Channel in an invalid state
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
|
|
|
|
lightning-openchannel\_init(7), lightning-openchannel\_update(7),
|
|
|
|
lightning-openchannel\_signed(7), lightning-openchannel\_bump(7),
|
|
|
|
lightning-fundchannel\_start(7), lightning-fundchannel\_complete(7),
|
|
|
|
lightning-fundchannel(7), lightning-fundpsbt(7), lightning-utxopsbt(7),
|
|
|
|
lightning-multifundchannel(7)
|
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
------
|
|
|
|
|
|
|
|
@niftynei <<niftynei@gmail.com>> is mainly responsible.
|
|
|
|
|
|
|
|
RESOURCES
|
|
|
|
---------
|
|
|
|
|
|
|
|
Main web site: <https://github.com/ElementsProject/lightning>
|
2022-07-13 17:45:39 +02:00
|
|
|
[comment]: # ( SHA256STAMP:014c926a7202b951a2407b1a9996c90d4dd68aadfdbdb04311b280c016d538dc)
|