mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-04 04:54:47 +01:00
b9ac032329
The idea is that you regenerate the man pages in the same commit you alter them: that's how we know whether to try regenerating them or not (git doesn't store timestamps, so it can't really tell). Travis will now check this, so force them all to sync to this commit. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
54 lines
1.5 KiB
Markdown
54 lines
1.5 KiB
Markdown
lightning-reserveinputs -- Construct a transaction and reserve the UTXOs it spends
|
|
==================================================================================
|
|
|
|
SYNOPSIS
|
|
--------
|
|
|
|
**reserveinputs** *psbt* [*exclusive*]
|
|
|
|
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 if any of the inputs are known to be spent, and ignore inputs
|
|
which are unknown.
|
|
|
|
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.
|
|
|
|
|
|
RETURN VALUE
|
|
------------
|
|
|
|
On success, a *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.
|
|
|
|
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*.
|
|
|
|
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>
|
|
|