mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-28 01:24:42 +01:00
ba7d4a8f6b
We were including the entire list of prerequisites when generating a shastamp, which for schemas includes the `tools/fromschema.py` doc. This meant all of our shasums were updating anytime this tool file changed. Instead, we just include the first prerequisite. See: https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html#Automatic-Variables
57 lines
1.6 KiB
Markdown
57 lines
1.6 KiB
Markdown
lightning-unreserveinputs -- Release reserved UTXOs
|
|
===================================================
|
|
|
|
SYNOPSIS
|
|
--------
|
|
|
|
**unreserveinputs** *psbt* [*reserve*]
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
The **unreserveinputs** RPC command releases (or reduces reservation)
|
|
on UTXOs which were previously marked as reserved, generally by
|
|
lightning-reserveinputs(7).
|
|
|
|
The inputs to unreserve are the inputs specified in the passed-in *psbt*.
|
|
|
|
If *reserve* is specified, it is the number of blocks to decrease
|
|
reservation by; default is 72.
|
|
|
|
RETURN VALUE
|
|
------------
|
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-START)
|
|
On success, an object containing **reservations** is returned. It is an array of objects, where each object contains:
|
|
- **txid** (txid): the transaction id
|
|
- **vout** (u32): the output number which was reserved
|
|
- **was_reserved** (boolean): whether the input was already reserved (usually `true`)
|
|
- **reserved** (boolean): whether the input is now reserved (may still be `true` if it was reserved for a long time)
|
|
|
|
If **reserved** is *true*:
|
|
- **reserved_to_block** (u32): what blockheight the reservation will expire
|
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-END)
|
|
|
|
On failure, an error is reported and no UTXOs are unreserved.
|
|
|
|
The following error codes may occur:
|
|
- -32602: Invalid parameter, i.e. an unparseable PSBT.
|
|
|
|
AUTHOR
|
|
------
|
|
|
|
niftynei <<niftynei@gmail.com>> is mainly responsible.
|
|
|
|
SEE ALSO
|
|
--------
|
|
|
|
lightning-unreserveinputs(7), lightning-signpsbt(7), lightning-sendpsbt(7)
|
|
|
|
RESOURCES
|
|
---------
|
|
|
|
Main web site: <https://github.com/ElementsProject/lightning>
|
|
|
|
[comment]: # ( SHA256STAMP:86bf213ca69b042fec2cf4241875a923db21aef9830e690bd1fb495ffd120966)
|