rgb-cln/doc/lightning-reserveinputs.7.md

52 lines
1.5 KiB
Markdown
Raw Normal View History

2020-06-10 01:20:18 +01:00
lightning-reserveinputs -- Construct a transaction and reserve the UTXOs it spends
==================================================================================
SYNOPSIS
--------
**reserveinputs** *psbt* [*exclusive*]
2020-06-10 01:20:18 +01:00
DESCRIPTION
-----------
The **reserveinputs** RPC command places (or increases) reservations on any
inputs specified in *psbt* which are known to lightningd. It will fail
with an error it any of the inputs are known to be spent.
2020-06-10 01:20:18 +01:00
Normally the command will fail (with no reservations made) if an input
is already reserved. If *exclusive* is set to *False*, then existing
reservations are simply extended, rather than causing failure.
2020-06-10 01:20:18 +01:00
RETURN VALUE
------------
On success, an *reservations* array is returned, with an entry for each input
which was reserved:
- *txid* is the input transaction id.
- *vout* is the input index.
- *was_reserved* indicates whether the input was already reserved.
- *reserved* indicates that the input is now reserved (i.e. true).
- *reserved_to_block* indicates what blockheight the reservation will expire.
2020-06-10 01:20:18 +01:00
On failure, an error is reported and no UTXOs are reserved.
The following error codes may occur:
- -32602: Invalid parameter, such as specifying a spent/reserved input in *psbt*.
2020-06-10 01:20:18 +01:00
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>