mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-02 18:35:00 +01:00
Unless the transaction is confirmed, the UTXOs should be released if something happens to the peer. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 lines
634 B
C
16 lines
634 B
C
#ifndef LIGHTNING_LIGHTNINGD_BUILD_UTXOS_H
|
|
#define LIGHTNING_LIGHTNINGD_BUILD_UTXOS_H
|
|
#include "config.h"
|
|
#include <lightningd/lightningd.h>
|
|
#include <lightningd/utxo.h>
|
|
|
|
/* Reserves UTXOs to build tx which pays this amount; returns NULL if
|
|
* impossible. *change_amount 0 if no change needed. */
|
|
struct utxo *build_utxos(const tal_t *ctx,
|
|
struct lightningd *ld, u64 satoshi_out,
|
|
u32 feerate_per_kw, u64 dust_limit,
|
|
u64 *change_amount, u32 *change_keyindex);
|
|
|
|
/* Once we've spent them, mark them confirmed. */
|
|
void confirm_utxos(struct lightningd *ld, struct utxo *utxos);
|
|
#endif /* LIGHTNING_LIGHTNINGD_BUILD_UTXOS_H */
|