mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
a37c165cb9
Basically all files shared by different daemons. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
15 lines
528 B
C
15 lines
528 B
C
#ifndef LIGHTNING_LIGHTNINGD_BUILD_UTXOS_H
|
|
#define LIGHTNING_LIGHTNINGD_BUILD_UTXOS_H
|
|
#include "config.h"
|
|
#include <common/utxo.h>
|
|
#include <lightningd/lightningd.h>
|
|
|
|
/* Reserves UTXOs to build tx which pays this amount; returns NULL if
|
|
* impossible. *change_satoshis 0 if no change needed. */
|
|
const struct utxo **build_utxos(const tal_t *ctx,
|
|
struct lightningd *ld, u64 satoshi_out,
|
|
u32 feerate_per_kw, u64 dust_limit,
|
|
u64 *change_satoshis, u32 *change_keyindex);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_BUILD_UTXOS_H */
|