mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
3543530172
Accuracy improvements: 1. We assumed the output was a p2wpkh, but it can be user-supplied now. 2. We assumed we always had change; remove this for wallet_select_all. Calculation out-by-one fixes: 1. We need to add 1 byte (4 sipa) for the input count. 2. We need to add 1 byte (4 sipa) for the output count. 3. We need to add 1 byte (4 sipa) for the output script length for each output. 4. We need to add 1 byte (4 sipa) for the input script length for each input. 5. We need to add 1 byte (4 sipa) for the PUSH optcode for each P2SH input. The results are now a slight overestimate (due to guessing 73 bytes for signature, whereas they're 71 or 72 in practice). Fixes: #458 Reported-by: Jonas Nick @jonasnick Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
38 lines
1.0 KiB
C
38 lines
1.0 KiB
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 <lightningd/lightningd.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;
|
|
u64 bip32_max_index = db_get_intvar(ld->wallet->db, "bip32_max_index", 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 = bip32_max_index + 1;
|
|
db_set_intvar(ld->wallet->db, "bip32_max_index", *change_keyindex);
|
|
}
|
|
return utxos;
|
|
}
|