mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
35 lines
881 B
C
35 lines
881 B
C
#include <bitcoin/base58.h>
|
|
#include <bitcoin/script.h>
|
|
#include <ccan/structeq/structeq.h>
|
|
#include <common/utils.h>
|
|
#include <lightningd/build_utxos.h>
|
|
#include <lightningd/jsonrpc.h>
|
|
#include <wally_bip32.h>
|
|
|
|
|
|
const struct utxo **build_utxos(const tal_t *ctx,
|
|
struct lightningd *ld, u64 satoshi_out,
|
|
u32 feerate_per_kw, u64 dust_limit,
|
|
size_t outputscriptlen,
|
|
u64 *change_satoshis, u32 *change_keyindex)
|
|
{
|
|
u64 fee_estimate = 0;
|
|
const struct utxo **utxos =
|
|
wallet_select_coins(ctx, ld->wallet, satoshi_out, feerate_per_kw,
|
|
outputscriptlen,
|
|
&fee_estimate, change_satoshis);
|
|
|
|
/* Oops, didn't have enough coins available */
|
|
if (!utxos)
|
|
return NULL;
|
|
|
|
/* Do we need a change output? */
|
|
if (*change_satoshis < dust_limit) {
|
|
*change_satoshis = 0;
|
|
*change_keyindex = 0;
|
|
} else {
|
|
*change_keyindex = wallet_get_newindex(ld);
|
|
}
|
|
return utxos;
|
|
}
|