#include "withdraw_tx.h" #include #include #include #include #include #include #include struct bitcoin_tx *withdraw_tx(const tal_t *ctx, const struct utxo **utxos, u8 *destination, struct amount_sat withdraw_amount, const struct pubkey *changekey, struct amount_sat change, const struct ext_key *bip32_base) { struct bitcoin_tx *tx; tx = tx_spending_utxos(ctx, utxos, bip32_base, !amount_sat_eq(change, AMOUNT_SAT(0))); tx->output[0].amount = withdraw_amount; tx->output[0].script = destination; if (!amount_sat_eq(change, AMOUNT_SAT(0))) { const void *map[2]; map[0] = int2ptr(0); map[1] = int2ptr(1); tx->output[1].script = scriptpubkey_p2wpkh(tx, changekey); tx->output[1].amount = change; permute_outputs(tx, NULL, map); } permute_inputs(tx, (const void **)utxos); return tx; }