2016-01-21 21:08:08 +01:00
|
|
|
#include <assert.h>
|
2017-08-28 18:02:01 +02:00
|
|
|
#include <bitcoin/block.h>
|
2020-05-16 03:29:05 +02:00
|
|
|
#include <bitcoin/chainparams.h>
|
2020-05-21 03:57:00 +02:00
|
|
|
#include <bitcoin/psbt.h>
|
2017-08-28 18:02:01 +02:00
|
|
|
#include <bitcoin/pullpush.h>
|
|
|
|
#include <bitcoin/tx.h>
|
2016-01-21 21:11:46 +01:00
|
|
|
#include <ccan/cast/cast.h>
|
2015-05-28 23:38:27 +02:00
|
|
|
#include <ccan/crypto/sha256/sha256.h>
|
2015-06-12 04:56:59 +02:00
|
|
|
#include <ccan/endian/endian.h>
|
2015-10-26 11:35:28 +01:00
|
|
|
#include <ccan/mem/mem.h>
|
2015-07-01 06:14:31 +02:00
|
|
|
#include <ccan/read_write_all/read_write_all.h>
|
2015-06-04 06:18:11 +02:00
|
|
|
#include <ccan/str/hex/hex.h>
|
2017-08-28 18:02:01 +02:00
|
|
|
#include <common/type_to_string.h>
|
2016-01-21 21:11:46 +01:00
|
|
|
#include <stdio.h>
|
2019-06-21 02:11:41 +02:00
|
|
|
#include <wire/wire.h>
|
2015-05-28 23:38:27 +02:00
|
|
|
|
2016-04-11 09:09:53 +02:00
|
|
|
#define SEGREGATED_WITNESS_FLAG 0x1
|
|
|
|
|
2019-06-05 07:28:55 +02:00
|
|
|
int bitcoin_tx_add_output(struct bitcoin_tx *tx, const u8 *script,
|
2020-05-21 03:57:00 +02:00
|
|
|
u8 *wscript, struct amount_sat amount)
|
2019-03-14 16:20:03 +01:00
|
|
|
{
|
2019-03-25 17:08:29 +01:00
|
|
|
size_t i = tx->wtx->num_outputs;
|
2019-03-14 16:20:03 +01:00
|
|
|
struct wally_tx_output *output;
|
2020-05-21 03:57:00 +02:00
|
|
|
struct wally_psbt_output *psbt_out;
|
2019-05-06 15:20:47 +02:00
|
|
|
int ret;
|
|
|
|
u64 satoshis = amount.satoshis; /* Raw: low-level helper */
|
2019-07-30 21:09:47 +02:00
|
|
|
const struct chainparams *chainparams = tx->chainparams;
|
2019-03-25 13:52:31 +01:00
|
|
|
assert(i < tx->wtx->outputs_allocation_len);
|
2019-03-14 16:20:03 +01:00
|
|
|
|
|
|
|
assert(tx->wtx != NULL);
|
2019-07-30 21:09:47 +02:00
|
|
|
assert(chainparams);
|
2019-05-06 15:20:47 +02:00
|
|
|
|
2019-09-26 00:42:26 +02:00
|
|
|
if (chainparams->is_elements) {
|
2019-05-06 15:20:47 +02:00
|
|
|
u8 value[9];
|
|
|
|
ret = wally_tx_confidential_value_from_satoshi(satoshis, value,
|
|
|
|
sizeof(value));
|
|
|
|
assert(ret == WALLY_OK);
|
|
|
|
ret = wally_tx_elements_output_init_alloc(
|
2019-07-30 21:09:47 +02:00
|
|
|
script, tal_bytelen(script), chainparams->fee_asset_tag, 33,
|
|
|
|
value, sizeof(value), NULL, 0, NULL, 0, NULL, 0, &output);
|
2019-05-06 15:20:47 +02:00
|
|
|
assert(ret == WALLY_OK);
|
|
|
|
/* Cheat a bit by also setting the numeric satoshi value,
|
|
|
|
* otherwise we end up converting a number of times */
|
|
|
|
output->satoshi = satoshis;
|
|
|
|
} else {
|
|
|
|
ret = wally_tx_output_init_alloc(satoshis, script,
|
|
|
|
tal_bytelen(script), &output);
|
2019-10-07 00:25:23 +02:00
|
|
|
assert(ret == WALLY_OK);
|
2019-05-06 15:20:47 +02:00
|
|
|
}
|
|
|
|
ret = wally_tx_add_output(tx->wtx, output);
|
|
|
|
assert(ret == WALLY_OK);
|
|
|
|
|
2020-05-21 03:57:00 +02:00
|
|
|
psbt_out = psbt_add_output(tx->psbt, output, i);
|
|
|
|
if (wscript) {
|
|
|
|
ret = wally_psbt_output_set_witness_script(psbt_out,
|
|
|
|
wscript,
|
|
|
|
tal_bytelen(wscript));
|
|
|
|
assert(ret == WALLY_OK);
|
|
|
|
}
|
|
|
|
|
2019-03-14 16:20:03 +01:00
|
|
|
wally_tx_output_free(output);
|
2019-05-06 15:20:47 +02:00
|
|
|
bitcoin_tx_output_set_amount(tx, i, amount);
|
2019-03-14 16:20:03 +01:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2019-08-12 21:02:06 +02:00
|
|
|
int bitcoin_tx_add_multi_outputs(struct bitcoin_tx *tx,
|
|
|
|
struct bitcoin_tx_output **outputs)
|
|
|
|
{
|
|
|
|
for (size_t j = 0; j < tal_count(outputs); j++)
|
|
|
|
bitcoin_tx_add_output(tx, outputs[j]->script,
|
2020-05-21 03:57:00 +02:00
|
|
|
NULL, outputs[j]->amount);
|
2019-08-12 21:02:06 +02:00
|
|
|
|
|
|
|
return tx->wtx->num_outputs;
|
|
|
|
}
|
|
|
|
|
2020-04-02 03:34:00 +02:00
|
|
|
bool elements_tx_output_is_fee(const struct bitcoin_tx *tx, int outnum)
|
2019-05-09 18:49:46 +02:00
|
|
|
{
|
|
|
|
assert(outnum < tx->wtx->num_outputs);
|
2019-09-26 00:42:26 +02:00
|
|
|
return chainparams->is_elements &&
|
|
|
|
tx->wtx->outputs[outnum].script_len == 0;
|
2019-05-09 18:49:46 +02:00
|
|
|
}
|
|
|
|
|
2020-04-02 03:35:04 +02:00
|
|
|
struct amount_sat bitcoin_tx_compute_fee_w_inputs(const struct bitcoin_tx *tx,
|
|
|
|
struct amount_sat input_val)
|
2019-05-06 15:24:53 +02:00
|
|
|
{
|
2019-09-26 21:07:20 +02:00
|
|
|
struct amount_asset asset;
|
2019-09-26 12:25:05 +02:00
|
|
|
bool ok;
|
2019-05-06 15:24:53 +02:00
|
|
|
|
2019-09-26 12:25:05 +02:00
|
|
|
for (size_t i = 0; i < tx->wtx->num_outputs; i++) {
|
2019-09-26 21:07:20 +02:00
|
|
|
asset = bitcoin_tx_output_get_amount(tx, i);
|
|
|
|
if (elements_tx_output_is_fee(tx, i) ||
|
|
|
|
!amount_asset_is_main(&asset))
|
2019-05-09 18:49:46 +02:00
|
|
|
continue;
|
|
|
|
|
2020-04-02 03:35:04 +02:00
|
|
|
ok = amount_sat_sub(&input_val, input_val,
|
|
|
|
amount_asset_to_sat(&asset));
|
2019-09-26 12:25:05 +02:00
|
|
|
assert(ok);
|
2019-05-06 15:24:53 +02:00
|
|
|
}
|
2020-04-02 03:35:04 +02:00
|
|
|
return input_val;
|
2019-05-06 15:24:53 +02:00
|
|
|
}
|
|
|
|
|
2020-02-08 21:30:03 +01:00
|
|
|
/**
|
2020-04-02 03:35:04 +02:00
|
|
|
* Compute how much fee we are actually sending with this transaction.
|
|
|
|
* Note that using this with a transaction without the input_amounts
|
|
|
|
* initialized/populated is an error.
|
|
|
|
*/
|
|
|
|
struct amount_sat bitcoin_tx_compute_fee(const struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
struct amount_sat input_total = AMOUNT_SAT(0);
|
|
|
|
bool ok;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < tal_count(tx->input_amounts); i++) {
|
|
|
|
assert(tx->input_amounts[i]);
|
|
|
|
ok = amount_sat_add(&input_total, input_total,
|
|
|
|
*tx->input_amounts[i]);
|
|
|
|
assert(ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
return bitcoin_tx_compute_fee_w_inputs(tx, input_total);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-02-08 21:30:03 +01:00
|
|
|
* Add an explicit fee output if necessary.
|
|
|
|
*
|
|
|
|
* An explicit fee output is only necessary if we are using an elements
|
|
|
|
* transaction, and we have a non-zero fee. This method may be called multiple
|
|
|
|
* times.
|
|
|
|
*
|
|
|
|
* Returns the position of the fee output, or -1 in the case of non-elements
|
|
|
|
* transactions.
|
|
|
|
*/
|
|
|
|
static int elements_tx_add_fee_output(struct bitcoin_tx *tx)
|
2019-05-06 15:24:53 +02:00
|
|
|
{
|
2019-09-26 12:25:05 +02:00
|
|
|
struct amount_sat fee = bitcoin_tx_compute_fee(tx);
|
2020-02-08 21:26:55 +01:00
|
|
|
int pos;
|
2019-05-06 15:24:53 +02:00
|
|
|
|
|
|
|
/* If we aren't using elements, we don't add explicit fee outputs */
|
2019-09-26 12:25:05 +02:00
|
|
|
if (!chainparams->is_elements || amount_sat_eq(fee, AMOUNT_SAT(0)))
|
2019-05-06 15:24:53 +02:00
|
|
|
return -1;
|
2019-05-09 18:49:46 +02:00
|
|
|
|
|
|
|
/* Try to find any existing fee output */
|
2020-02-08 21:26:55 +01:00
|
|
|
for (pos = 0; pos < tx->wtx->num_outputs; pos++) {
|
|
|
|
if (elements_tx_output_is_fee(tx, pos))
|
|
|
|
break;
|
2019-05-09 18:49:46 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 03:57:00 +02:00
|
|
|
if (pos == tx->wtx->num_outputs)
|
|
|
|
return bitcoin_tx_add_output(tx, NULL, NULL, fee);
|
|
|
|
else {
|
2019-05-09 18:49:46 +02:00
|
|
|
bitcoin_tx_output_set_amount(tx, pos, fee);
|
|
|
|
return pos;
|
|
|
|
}
|
2019-05-06 15:24:53 +02:00
|
|
|
}
|
|
|
|
|
2019-03-14 16:20:03 +01:00
|
|
|
int bitcoin_tx_add_input(struct bitcoin_tx *tx, const struct bitcoin_txid *txid,
|
|
|
|
u32 outnum, u32 sequence,
|
2019-08-21 05:52:44 +02:00
|
|
|
struct amount_sat amount, u8 *script)
|
2019-03-14 16:20:03 +01:00
|
|
|
{
|
|
|
|
struct wally_tx_input *input;
|
2019-09-16 23:58:36 +02:00
|
|
|
size_t i;
|
2019-03-14 16:20:03 +01:00
|
|
|
|
|
|
|
assert(tx->wtx != NULL);
|
2019-09-16 23:58:36 +02:00
|
|
|
i = tx->wtx->num_inputs;
|
2019-03-14 16:20:03 +01:00
|
|
|
wally_tx_input_init_alloc(txid->shad.sha.u.u8,
|
|
|
|
sizeof(struct bitcoin_txid), outnum, sequence,
|
|
|
|
script, tal_bytelen(script),
|
|
|
|
NULL /* Empty witness stack */, &input);
|
2019-09-26 00:42:26 +02:00
|
|
|
input->features = chainparams->is_elements ? WALLY_TX_IS_ELEMENTS : 0;
|
2019-03-14 16:20:03 +01:00
|
|
|
wally_tx_add_input(tx->wtx, input);
|
2020-05-21 03:57:00 +02:00
|
|
|
psbt_add_input(tx->psbt, input, i);
|
2019-03-14 16:20:03 +01:00
|
|
|
wally_tx_input_free(input);
|
|
|
|
|
2019-03-22 14:01:16 +01:00
|
|
|
/* Now store the input amount if we know it, so we can sign later */
|
2019-09-16 23:58:36 +02:00
|
|
|
if (tal_count(tx->input_amounts) < tx->wtx->num_inputs)
|
|
|
|
tal_resize(&tx->input_amounts, tx->wtx->num_inputs);
|
|
|
|
|
2019-03-22 14:01:16 +01:00
|
|
|
tx->input_amounts[i] = tal_free(tx->input_amounts[i]);
|
2019-08-21 05:52:44 +02:00
|
|
|
tx->input_amounts[i] = tal_dup(tx, struct amount_sat, &amount);
|
2019-03-22 14:01:16 +01:00
|
|
|
|
2020-05-21 03:57:00 +02:00
|
|
|
|
2019-03-14 16:20:03 +01:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2019-03-15 14:09:11 +01:00
|
|
|
bool bitcoin_tx_check(const struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
u8 *newtx;
|
|
|
|
size_t written;
|
2019-05-06 15:24:53 +02:00
|
|
|
int flags = WALLY_TX_FLAG_USE_WITNESS;
|
2019-03-15 14:09:11 +01:00
|
|
|
|
2020-02-08 21:26:55 +01:00
|
|
|
if (tal_count(tx->input_amounts) != tx->wtx->num_inputs)
|
|
|
|
return false;
|
|
|
|
|
2019-05-06 15:24:53 +02:00
|
|
|
if (wally_tx_get_length(tx->wtx, flags, &written) != WALLY_OK)
|
2019-03-15 14:09:11 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
newtx = tal_arr(tmpctx, u8, written);
|
2019-05-06 15:24:53 +02:00
|
|
|
if (wally_tx_to_bytes(tx->wtx, flags, newtx, written, &written) !=
|
|
|
|
WALLY_OK)
|
2019-03-15 14:09:11 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (written != tal_bytelen(newtx))
|
|
|
|
return false;
|
|
|
|
|
2019-03-25 13:52:31 +01:00
|
|
|
return true;
|
2019-03-15 14:09:11 +01:00
|
|
|
}
|
|
|
|
|
2019-03-20 16:41:29 +01:00
|
|
|
void bitcoin_tx_output_set_amount(struct bitcoin_tx *tx, int outnum,
|
2019-08-21 05:52:44 +02:00
|
|
|
struct amount_sat amount)
|
2019-03-20 16:41:29 +01:00
|
|
|
{
|
2019-04-16 22:30:25 +02:00
|
|
|
u64 satoshis = amount.satoshis; /* Raw: low-level helper */
|
|
|
|
struct wally_tx_output *output = &tx->wtx->outputs[outnum];
|
2019-03-25 17:08:29 +01:00
|
|
|
assert(outnum < tx->wtx->num_outputs);
|
2019-09-26 00:42:26 +02:00
|
|
|
if (chainparams->is_elements) {
|
|
|
|
int ret = wally_tx_confidential_value_from_satoshi(
|
|
|
|
satoshis, output->value, output->value_len);
|
2019-05-06 15:20:47 +02:00
|
|
|
assert(ret == WALLY_OK);
|
2019-04-16 22:30:25 +02:00
|
|
|
} else {
|
|
|
|
output->satoshi = satoshis;
|
2020-05-21 03:57:00 +02:00
|
|
|
|
|
|
|
/* update the global tx for the psbt also */
|
|
|
|
output = &tx->psbt->tx->outputs[outnum];
|
|
|
|
output->satoshi = satoshis;
|
2019-04-16 22:30:25 +02:00
|
|
|
}
|
2019-03-20 16:41:29 +01:00
|
|
|
}
|
|
|
|
|
2019-03-22 22:45:41 +01:00
|
|
|
const u8 *bitcoin_tx_output_get_script(const tal_t *ctx,
|
|
|
|
const struct bitcoin_tx *tx, int outnum)
|
|
|
|
{
|
|
|
|
const struct wally_tx_output *output;
|
|
|
|
u8 *res;
|
|
|
|
assert(outnum < tx->wtx->num_outputs);
|
|
|
|
output = &tx->wtx->outputs[outnum];
|
2019-09-25 14:45:34 +02:00
|
|
|
|
|
|
|
if (output->script == NULL) {
|
|
|
|
/* This can happen for coinbase transactions and pegin
|
|
|
|
* transactions */
|
2019-04-13 19:14:07 +02:00
|
|
|
return NULL;
|
2019-09-25 14:45:34 +02:00
|
|
|
}
|
2019-04-13 19:14:07 +02:00
|
|
|
|
2020-05-21 03:57:00 +02:00
|
|
|
res = tal_dup_arr(ctx, u8, output->script, output->script_len, 0);
|
2019-03-22 22:45:41 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2020-05-21 03:57:00 +02:00
|
|
|
struct witscript *bitcoin_tx_output_get_witscript(const tal_t *ctx,
|
|
|
|
const struct bitcoin_tx *tx,
|
|
|
|
int outnum)
|
|
|
|
{
|
|
|
|
struct witscript *wit;
|
|
|
|
struct wally_psbt_output *out;
|
|
|
|
assert(outnum < tx->psbt->num_outputs);
|
|
|
|
out = &tx->psbt->outputs[outnum];
|
|
|
|
|
|
|
|
if (out->witness_script_len == 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wit = tal(ctx, struct witscript);
|
|
|
|
wit->ptr = tal_dup_arr(ctx, u8, out->witness_script, out->witness_script_len, 0);
|
|
|
|
|
|
|
|
return wit;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct witscript **bitcoin_tx_get_witscripts(const tal_t *ctx,
|
|
|
|
const struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
struct witscript **witscripts;
|
|
|
|
witscripts = tal_arr(ctx, struct witscript *, tx->wtx->num_outputs);
|
|
|
|
|
|
|
|
for (i = 0; i < tx->wtx->num_outputs; i++)
|
|
|
|
witscripts[i] = bitcoin_tx_output_get_witscript(witscripts, tx, i);
|
|
|
|
|
|
|
|
return cast_const2(const struct witscript **, witscripts);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-18 13:28:51 +02:00
|
|
|
/* FIXME(cdecker) Make the caller pass in a reference to amount_asset, and
|
|
|
|
* return false if unintelligible/encrypted. (WARN UNUSED). */
|
2019-09-26 21:07:20 +02:00
|
|
|
struct amount_asset bitcoin_tx_output_get_amount(const struct bitcoin_tx *tx,
|
|
|
|
int outnum)
|
2019-03-22 22:45:41 +01:00
|
|
|
{
|
2019-09-26 21:07:20 +02:00
|
|
|
struct amount_asset amount;
|
2019-04-16 22:30:25 +02:00
|
|
|
struct wally_tx_output *output;
|
2019-09-26 21:07:20 +02:00
|
|
|
be64 raw;
|
|
|
|
|
2019-07-30 21:09:47 +02:00
|
|
|
assert(tx->chainparams);
|
2019-03-22 22:45:41 +01:00
|
|
|
assert(outnum < tx->wtx->num_outputs);
|
2019-04-16 22:30:25 +02:00
|
|
|
output = &tx->wtx->outputs[outnum];
|
2019-09-26 21:07:20 +02:00
|
|
|
|
|
|
|
if (chainparams->is_elements) {
|
2019-10-18 13:28:51 +02:00
|
|
|
assert(output->asset_len == sizeof(amount.asset));
|
2019-09-26 21:07:20 +02:00
|
|
|
memcpy(&amount.asset, output->asset, sizeof(amount.asset));
|
|
|
|
|
2019-10-18 13:28:51 +02:00
|
|
|
/* We currently only support explicit value asset tags, others
|
|
|
|
* are confidential, so don't even try to assign a value to
|
|
|
|
* it. */
|
|
|
|
if (output->asset[0] == 0x01) {
|
|
|
|
memcpy(&raw, output->value + 1, sizeof(raw));
|
|
|
|
amount.value = be64_to_cpu(raw);
|
|
|
|
} else {
|
|
|
|
amount.value = 0;
|
|
|
|
}
|
2019-07-30 21:09:47 +02:00
|
|
|
} else {
|
2019-09-26 21:07:20 +02:00
|
|
|
/* Do not assign amount.asset, we should never touch it in
|
|
|
|
* non-elements scenarios. */
|
|
|
|
amount.value = tx->wtx->outputs[outnum].satoshi;
|
2019-04-16 22:30:25 +02:00
|
|
|
}
|
|
|
|
|
2019-03-22 22:45:41 +01:00
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
2019-11-14 17:38:17 +01:00
|
|
|
void bitcoin_tx_output_get_amount_sat(struct bitcoin_tx *tx, int outnum,
|
|
|
|
struct amount_sat *amount)
|
|
|
|
{
|
|
|
|
struct amount_asset asset_amt;
|
|
|
|
asset_amt = bitcoin_tx_output_get_amount(tx, outnum);
|
|
|
|
assert(amount_asset_is_main(&asset_amt));
|
|
|
|
*amount = amount_asset_to_sat(&asset_amt);
|
|
|
|
}
|
|
|
|
|
2019-03-20 16:41:29 +01:00
|
|
|
void bitcoin_tx_input_set_witness(struct bitcoin_tx *tx, int innum,
|
|
|
|
u8 **witness)
|
|
|
|
{
|
|
|
|
struct wally_tx_witness_stack *stack = NULL;
|
|
|
|
size_t stack_size = tal_count(witness);
|
2020-05-21 03:57:00 +02:00
|
|
|
struct wally_psbt_input *in;
|
2019-03-20 16:41:29 +01:00
|
|
|
|
|
|
|
/* Free any lingering witness */
|
|
|
|
if (witness) {
|
|
|
|
wally_tx_witness_stack_init_alloc(stack_size, &stack);
|
|
|
|
for (size_t i = 0; i < stack_size; i++)
|
|
|
|
wally_tx_witness_stack_add(stack, witness[i],
|
|
|
|
tal_bytelen(witness[i]));
|
|
|
|
}
|
|
|
|
wally_tx_set_input_witness(tx->wtx, innum, stack);
|
2020-05-21 03:57:00 +02:00
|
|
|
|
|
|
|
/* Also add to the psbt */
|
|
|
|
if (stack) {
|
|
|
|
assert(innum < tx->psbt->num_inputs);
|
|
|
|
in = &tx->psbt->inputs[innum];
|
|
|
|
wally_psbt_input_set_final_witness(in, stack);
|
|
|
|
}
|
|
|
|
|
2019-03-20 16:41:29 +01:00
|
|
|
if (stack)
|
|
|
|
wally_tx_witness_stack_free(stack);
|
2019-08-21 05:52:42 +02:00
|
|
|
if (taken(witness))
|
|
|
|
tal_free(witness);
|
2020-05-21 03:57:00 +02:00
|
|
|
|
2019-03-20 16:41:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void bitcoin_tx_input_set_script(struct bitcoin_tx *tx, int innum, u8 *script)
|
|
|
|
{
|
2020-05-21 03:57:00 +02:00
|
|
|
struct wally_psbt_input *in;
|
2019-03-20 16:41:29 +01:00
|
|
|
wally_tx_set_input_script(tx->wtx, innum, script, tal_bytelen(script));
|
2020-05-21 03:57:00 +02:00
|
|
|
|
|
|
|
/* Also add to the psbt */
|
|
|
|
assert(innum < tx->psbt->num_inputs);
|
|
|
|
in = &tx->psbt->inputs[innum];
|
|
|
|
wally_psbt_input_set_final_script_sig(in, script, tal_bytelen(script));
|
2019-03-20 16:41:29 +01:00
|
|
|
}
|
|
|
|
|
2019-03-22 22:45:41 +01:00
|
|
|
const u8 *bitcoin_tx_input_get_witness(const tal_t *ctx,
|
|
|
|
const struct bitcoin_tx *tx, int innum,
|
|
|
|
int witnum)
|
|
|
|
{
|
|
|
|
const u8 *witness_item;
|
|
|
|
struct wally_tx_witness_item *item;
|
|
|
|
assert(innum < tx->wtx->num_inputs);
|
|
|
|
assert(witnum < tx->wtx->inputs[innum].witness->num_items);
|
|
|
|
item = &tx->wtx->inputs[innum].witness->items[witnum];
|
|
|
|
witness_item =
|
|
|
|
tal_dup_arr(ctx, u8, item->witness, item->witness_len, 0);
|
|
|
|
return witness_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bitcoin_tx_input_get_txid(const struct bitcoin_tx *tx, int innum,
|
|
|
|
struct bitcoin_txid *out)
|
|
|
|
{
|
|
|
|
assert(innum < tx->wtx->num_inputs);
|
|
|
|
assert(sizeof(struct bitcoin_txid) ==
|
|
|
|
sizeof(tx->wtx->inputs[innum].txhash));
|
|
|
|
memcpy(out, tx->wtx->inputs[innum].txhash, sizeof(struct bitcoin_txid));
|
|
|
|
}
|
|
|
|
|
2016-04-11 09:09:53 +02:00
|
|
|
/* BIP144:
|
|
|
|
* If the witness is empty, the old serialization format should be used. */
|
|
|
|
static bool uses_witness(const struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
2019-03-25 11:35:56 +01:00
|
|
|
for (i = 0; i < tx->wtx->num_inputs; i++) {
|
|
|
|
if (tx->wtx->inputs[i].witness)
|
2016-04-11 09:09:53 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-03 00:07:06 +01:00
|
|
|
/* For signing, we ignore input scripts on other inputs, and pretend
|
|
|
|
* the current input has a certain script: this is indicated by a
|
2018-12-03 00:15:06 +01:00
|
|
|
* non-NULL override_script.
|
|
|
|
*
|
|
|
|
* For this (and other signing weirdness like SIGHASH_SINGLE), we
|
|
|
|
* also need the current input being signed; that's in input_num.
|
|
|
|
* We also need sighash_type.
|
|
|
|
*/
|
2016-08-18 06:53:45 +02:00
|
|
|
static void push_tx(const struct bitcoin_tx *tx,
|
2018-12-03 00:07:06 +01:00
|
|
|
const u8 *override_script,
|
2018-12-03 00:15:06 +01:00
|
|
|
size_t input_num,
|
2018-12-03 00:07:06 +01:00
|
|
|
void (*push)(const void *, size_t, void *), void *pushp,
|
|
|
|
bool bip144)
|
2015-05-28 23:38:27 +02:00
|
|
|
{
|
2019-03-22 17:52:15 +01:00
|
|
|
int res;
|
|
|
|
size_t len, written;
|
|
|
|
u8 *serialized;;
|
2016-04-11 09:09:53 +02:00
|
|
|
u8 flag = 0;
|
2015-05-28 23:38:27 +02:00
|
|
|
|
2018-02-01 22:18:46 +01:00
|
|
|
if (bip144 && uses_witness(tx))
|
2019-03-22 17:52:15 +01:00
|
|
|
flag |= WALLY_TX_FLAG_USE_WITNESS;
|
2016-04-11 09:09:53 +02:00
|
|
|
|
2019-10-18 13:27:26 +02:00
|
|
|
res = wally_tx_get_length(tx->wtx, flag, &len);
|
2019-06-21 02:11:41 +02:00
|
|
|
assert(res == WALLY_OK);
|
2019-03-22 17:52:15 +01:00
|
|
|
serialized = tal_arr(tmpctx, u8, len);
|
2016-04-24 12:23:35 +02:00
|
|
|
|
2019-03-22 17:52:15 +01:00
|
|
|
res = wally_tx_to_bytes(tx->wtx, flag, serialized, len, &written);
|
2019-06-21 02:11:00 +02:00
|
|
|
assert(res == WALLY_OK);
|
|
|
|
assert(len == written);
|
2019-03-22 17:52:15 +01:00
|
|
|
push(serialized, len, pushp);
|
|
|
|
tal_free(serialized);
|
2015-06-02 05:46:05 +02:00
|
|
|
}
|
|
|
|
|
2016-08-18 06:53:45 +02:00
|
|
|
static void push_sha(const void *data, size_t len, void *shactx_)
|
2015-06-02 05:46:05 +02:00
|
|
|
{
|
|
|
|
struct sha256_ctx *ctx = shactx_;
|
2015-10-26 11:35:28 +01:00
|
|
|
sha256_update(ctx, memcheck(data, len), len);
|
2015-06-02 05:46:05 +02:00
|
|
|
}
|
|
|
|
|
2016-08-18 06:53:45 +02:00
|
|
|
static void push_linearize(const void *data, size_t len, void *pptr_)
|
2015-06-02 05:46:05 +02:00
|
|
|
{
|
|
|
|
u8 **pptr = pptr_;
|
|
|
|
size_t oldsize = tal_count(*pptr);
|
|
|
|
|
|
|
|
tal_resize(pptr, oldsize + len);
|
2015-10-26 11:35:28 +01:00
|
|
|
memcpy(*pptr + oldsize, memcheck(data, len), len);
|
2015-06-02 05:46:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
u8 *linearize_tx(const tal_t *ctx, const struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
u8 *arr = tal_arr(ctx, u8, 0);
|
2018-12-03 00:07:06 +01:00
|
|
|
push_tx(tx, NULL, 0, push_linearize, &arr, true);
|
2015-06-02 05:46:05 +02:00
|
|
|
return arr;
|
2015-05-28 23:38:27 +02:00
|
|
|
}
|
2015-05-29 04:03:18 +02:00
|
|
|
|
2019-07-01 16:02:04 +02:00
|
|
|
size_t bitcoin_tx_weight(const struct bitcoin_tx *tx)
|
2016-04-24 12:23:35 +02:00
|
|
|
{
|
2019-07-01 16:02:04 +02:00
|
|
|
size_t weight;
|
|
|
|
int ret = wally_tx_get_weight(tx->wtx, &weight);
|
|
|
|
assert(ret == WALLY_OK);
|
|
|
|
return weight;
|
2016-04-24 12:23:35 +02:00
|
|
|
}
|
|
|
|
|
2017-12-18 07:41:52 +01:00
|
|
|
void bitcoin_txid(const struct bitcoin_tx *tx, struct bitcoin_txid *txid)
|
2015-06-02 05:29:13 +02:00
|
|
|
{
|
|
|
|
struct sha256_ctx ctx = SHA256_INIT;
|
|
|
|
|
2016-04-11 09:09:53 +02:00
|
|
|
/* For TXID, we never use extended form. */
|
2018-12-03 00:07:06 +01:00
|
|
|
push_tx(tx, NULL, 0, push_sha, &ctx, false);
|
2017-12-18 07:41:52 +01:00
|
|
|
sha256_double_done(&ctx, &txid->shad);
|
2015-06-02 05:29:13 +02:00
|
|
|
}
|
|
|
|
|
2019-03-01 13:23:22 +01:00
|
|
|
/* Use the bitcoin_tx destructor to also free the wally_tx */
|
|
|
|
static void bitcoin_tx_destroy(struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
wally_tx_free(tx->wtx);
|
|
|
|
}
|
|
|
|
|
2019-07-30 16:14:43 +02:00
|
|
|
struct bitcoin_tx *bitcoin_tx(const tal_t *ctx,
|
|
|
|
const struct chainparams *chainparams,
|
2020-01-29 12:59:06 +01:00
|
|
|
varint_t input_count, varint_t output_count,
|
|
|
|
u32 nlocktime)
|
2015-05-29 04:03:18 +02:00
|
|
|
{
|
|
|
|
struct bitcoin_tx *tx = tal(ctx, struct bitcoin_tx);
|
2019-07-30 22:04:55 +02:00
|
|
|
assert(chainparams);
|
2019-07-30 16:14:43 +02:00
|
|
|
|
2019-05-06 15:24:53 +02:00
|
|
|
/* If we are constructing an elements transaction we need to
|
|
|
|
* explicitly add the fee as an extra output. So allocate one more
|
|
|
|
* than the outputs we need internally. */
|
2019-09-25 22:38:45 +02:00
|
|
|
if (chainparams->is_elements)
|
2019-05-06 15:24:53 +02:00
|
|
|
output_count += 1;
|
|
|
|
|
2019-03-01 13:23:22 +01:00
|
|
|
wally_tx_init_alloc(WALLY_TX_VERSION_2, 0, input_count, output_count,
|
|
|
|
&tx->wtx);
|
|
|
|
tal_add_destructor(tx, bitcoin_tx_destroy);
|
|
|
|
|
2019-03-22 14:01:16 +01:00
|
|
|
tx->input_amounts = tal_arrz(tx, struct amount_sat*, input_count);
|
2020-01-29 12:59:06 +01:00
|
|
|
tx->wtx->locktime = nlocktime;
|
2019-03-05 14:28:29 +01:00
|
|
|
tx->wtx->version = 2;
|
2019-07-30 16:14:43 +02:00
|
|
|
tx->chainparams = chainparams;
|
2020-05-21 03:57:01 +02:00
|
|
|
tx->psbt = new_psbt(tx, tx->wtx);
|
2020-05-21 03:57:00 +02:00
|
|
|
|
2015-05-29 04:03:18 +02:00
|
|
|
return tx;
|
|
|
|
}
|
2015-06-04 06:18:11 +02:00
|
|
|
|
2020-02-08 21:26:55 +01:00
|
|
|
void bitcoin_tx_finalize(struct bitcoin_tx *tx)
|
|
|
|
{
|
2020-05-21 03:57:00 +02:00
|
|
|
size_t num_inputs;
|
2020-02-08 21:26:55 +01:00
|
|
|
elements_tx_add_fee_output(tx);
|
|
|
|
|
|
|
|
num_inputs = tx->wtx->num_inputs;
|
|
|
|
tal_resize(&tx->input_amounts, num_inputs);
|
|
|
|
assert(bitcoin_tx_check(tx));
|
|
|
|
}
|
|
|
|
|
2018-02-08 02:25:12 +01:00
|
|
|
struct bitcoin_tx *pull_bitcoin_tx(const tal_t *ctx, const u8 **cursor,
|
|
|
|
size_t *max)
|
2015-06-04 06:18:11 +02:00
|
|
|
{
|
2019-03-21 19:02:44 +01:00
|
|
|
size_t wsize;
|
2020-05-21 03:57:01 +02:00
|
|
|
int flags = WALLY_TX_FLAG_USE_WITNESS;
|
2018-02-08 02:25:12 +01:00
|
|
|
struct bitcoin_tx *tx = tal(ctx, struct bitcoin_tx);
|
2019-04-13 17:15:02 +02:00
|
|
|
|
2019-09-26 00:42:26 +02:00
|
|
|
if (chainparams->is_elements)
|
2019-04-13 17:15:02 +02:00
|
|
|
flags |= WALLY_TX_FLAG_USE_ELEMENTS;
|
|
|
|
|
|
|
|
if (wally_tx_from_bytes(*cursor, *max, flags, &tx->wtx) != WALLY_OK) {
|
2019-06-21 02:11:41 +02:00
|
|
|
fromwire_fail(cursor, max);
|
2019-03-01 13:23:22 +01:00
|
|
|
return tal_free(tx);
|
|
|
|
}
|
2019-04-13 17:15:02 +02:00
|
|
|
|
2019-03-01 13:23:22 +01:00
|
|
|
tal_add_destructor(tx, bitcoin_tx_destroy);
|
2019-04-13 17:15:02 +02:00
|
|
|
|
|
|
|
/* For whatever reason the length computation gets upset if we tell it
|
|
|
|
* that we are using elements. It wants to discover it on its own, NO
|
|
|
|
* CLUES! (Ms. Doyle)
|
|
|
|
*
|
|
|
|
* https://github.com/ElementsProject/libwally-core/issues/139
|
|
|
|
*/
|
|
|
|
wally_tx_get_length(tx->wtx, flags & ~WALLY_TX_FLAG_USE_ELEMENTS,
|
|
|
|
&wsize);
|
2019-03-25 13:52:31 +01:00
|
|
|
|
|
|
|
/* We don't know the input amounts yet, so set them all to NULL */
|
2019-03-22 14:01:16 +01:00
|
|
|
tx->input_amounts =
|
|
|
|
tal_arrz(tx, struct amount_sat *, tx->wtx->inputs_allocation_len);
|
2019-10-04 12:27:48 +02:00
|
|
|
tx->chainparams = chainparams;
|
2015-06-04 06:18:11 +02:00
|
|
|
|
2020-05-21 03:57:01 +02:00
|
|
|
tx->psbt = new_psbt(tx, tx->wtx);
|
2020-05-21 03:57:00 +02:00
|
|
|
|
2019-03-25 13:52:31 +01:00
|
|
|
*cursor += wsize;
|
|
|
|
*max -= wsize;
|
2015-06-04 06:18:11 +02:00
|
|
|
return tx;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:47 +01:00
|
|
|
struct bitcoin_tx *bitcoin_tx_from_hex(const tal_t *ctx, const char *hex,
|
|
|
|
size_t hexlen)
|
2015-06-04 06:18:11 +02:00
|
|
|
{
|
2016-07-01 03:57:57 +02:00
|
|
|
const char *end;
|
2015-06-04 06:18:11 +02:00
|
|
|
u8 *linear_tx;
|
|
|
|
const u8 *p;
|
|
|
|
struct bitcoin_tx *tx;
|
|
|
|
size_t len;
|
|
|
|
|
2016-04-11 09:02:43 +02:00
|
|
|
end = memchr(hex, '\n', hexlen);
|
|
|
|
if (!end)
|
2016-07-01 03:57:57 +02:00
|
|
|
end = hex + hexlen;
|
2016-01-21 21:11:46 +01:00
|
|
|
|
2015-07-01 06:14:31 +02:00
|
|
|
len = hex_data_size(end - hex);
|
2016-01-21 21:11:46 +01:00
|
|
|
p = linear_tx = tal_arr(ctx, u8, len);
|
2015-07-01 06:14:31 +02:00
|
|
|
if (!hex_decode(hex, end - hex, linear_tx, len))
|
2016-01-21 21:11:46 +01:00
|
|
|
goto fail;
|
2015-06-04 06:18:11 +02:00
|
|
|
|
|
|
|
tx = pull_bitcoin_tx(ctx, &p, &len);
|
|
|
|
if (!tx)
|
2016-01-21 21:11:46 +01:00
|
|
|
goto fail;
|
2015-07-01 06:14:31 +02:00
|
|
|
|
2016-04-24 12:10:29 +02:00
|
|
|
if (len)
|
|
|
|
goto fail_free_tx;
|
2016-11-11 00:02:04 +01:00
|
|
|
|
2016-01-21 21:11:46 +01:00
|
|
|
tal_free(linear_tx);
|
2020-02-08 21:26:55 +01:00
|
|
|
|
|
|
|
tx->input_amounts =
|
|
|
|
tal_arrz(tx, struct amount_sat *, tx->wtx->num_inputs);
|
|
|
|
|
2015-06-04 06:18:11 +02:00
|
|
|
return tx;
|
2016-01-21 21:11:46 +01:00
|
|
|
|
|
|
|
fail_free_tx:
|
|
|
|
tal_free(tx);
|
|
|
|
fail:
|
|
|
|
tal_free(linear_tx);
|
|
|
|
return NULL;
|
2015-06-04 06:18:11 +02:00
|
|
|
}
|
2015-06-05 05:05:46 +02:00
|
|
|
|
2017-12-18 07:41:52 +01:00
|
|
|
/* <sigh>. Bitcoind represents hashes as little-endian for RPC. */
|
2015-06-05 05:05:46 +02:00
|
|
|
static void reverse_bytes(u8 *arr, size_t len)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len / 2; i++) {
|
|
|
|
unsigned char tmp = arr[i];
|
|
|
|
arr[i] = arr[len - 1 - i];
|
|
|
|
arr[len - 1 - i] = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bitcoin_txid_from_hex(const char *hexstr, size_t hexstr_len,
|
2017-12-18 07:41:52 +01:00
|
|
|
struct bitcoin_txid *txid)
|
2015-06-05 05:05:46 +02:00
|
|
|
{
|
|
|
|
if (!hex_decode(hexstr, hexstr_len, txid, sizeof(*txid)))
|
|
|
|
return false;
|
2017-12-18 07:41:52 +01:00
|
|
|
reverse_bytes(txid->shad.sha.u.u8, sizeof(txid->shad.sha.u.u8));
|
2015-06-05 05:05:46 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-01 06:14:31 +02:00
|
|
|
|
2017-12-18 07:41:52 +01:00
|
|
|
bool bitcoin_txid_to_hex(const struct bitcoin_txid *txid,
|
2015-07-24 08:30:10 +02:00
|
|
|
char *hexstr, size_t hexstr_len)
|
|
|
|
{
|
2017-12-18 07:41:52 +01:00
|
|
|
struct sha256_double rev = txid->shad;
|
2015-07-24 08:30:10 +02:00
|
|
|
reverse_bytes(rev.sha.u.u8, sizeof(rev.sha.u.u8));
|
|
|
|
return hex_encode(&rev, sizeof(rev), hexstr, hexstr_len);
|
|
|
|
}
|
2017-01-04 04:37:15 +01:00
|
|
|
|
|
|
|
static char *fmt_bitcoin_tx(const tal_t *ctx, const struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
u8 *lin = linearize_tx(ctx, tx);
|
2017-01-10 05:49:25 +01:00
|
|
|
char *s = tal_hex(ctx, lin);
|
2017-01-04 04:37:15 +01:00
|
|
|
tal_free(lin);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-12-18 07:41:52 +01:00
|
|
|
static char *fmt_bitcoin_txid(const tal_t *ctx, const struct bitcoin_txid *txid)
|
|
|
|
{
|
|
|
|
char *hexstr = tal_arr(ctx, char, hex_str_size(sizeof(*txid)));
|
|
|
|
|
|
|
|
bitcoin_txid_to_hex(txid, hexstr, hex_str_size(sizeof(*txid)));
|
|
|
|
return hexstr;
|
|
|
|
}
|
|
|
|
|
2017-01-04 04:37:15 +01:00
|
|
|
REGISTER_TYPE_TO_STRING(bitcoin_tx, fmt_bitcoin_tx);
|
2017-12-18 07:41:52 +01:00
|
|
|
REGISTER_TYPE_TO_STRING(bitcoin_txid, fmt_bitcoin_txid);
|
2020-05-15 12:30:43 +02:00
|
|
|
|
|
|
|
void fromwire_bitcoin_txid(const u8 **cursor, size_t *max,
|
|
|
|
struct bitcoin_txid *txid)
|
|
|
|
{
|
|
|
|
fromwire_sha256_double(cursor, max, &txid->shad);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bitcoin_tx *fromwire_bitcoin_tx(const tal_t *ctx,
|
|
|
|
const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
struct bitcoin_tx *tx;
|
|
|
|
u16 input_amts_len;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
tx = pull_bitcoin_tx(ctx, cursor, max);
|
2020-05-19 03:28:13 +02:00
|
|
|
if (!tx)
|
|
|
|
return fromwire_fail(cursor, max);
|
|
|
|
|
2020-05-21 05:57:41 +02:00
|
|
|
/* pull_bitcoin_tx sets the psbt */
|
|
|
|
tal_free(tx->psbt);
|
|
|
|
tx->psbt = fromwire_psbt(tx, cursor, max);
|
|
|
|
|
2020-05-15 12:30:43 +02:00
|
|
|
input_amts_len = fromwire_u16(cursor, max);
|
2020-05-19 03:28:13 +02:00
|
|
|
|
|
|
|
/* They must give us none or all */
|
|
|
|
if (input_amts_len != 0
|
|
|
|
&& input_amts_len != tal_count(tx->input_amounts)) {
|
|
|
|
tal_free(tx);
|
|
|
|
return fromwire_fail(cursor, max);
|
|
|
|
}
|
2020-05-15 12:30:43 +02:00
|
|
|
|
|
|
|
for (i = 0; i < input_amts_len; i++) {
|
|
|
|
struct amount_sat sat;
|
|
|
|
sat = fromwire_amount_sat(cursor, max);
|
|
|
|
tx->input_amounts[i] =
|
|
|
|
tal_dup(tx, struct amount_sat, &sat);
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void towire_bitcoin_txid(u8 **pptr, const struct bitcoin_txid *txid)
|
|
|
|
{
|
|
|
|
towire_sha256_double(pptr, &txid->shad);
|
|
|
|
}
|
|
|
|
|
|
|
|
void towire_bitcoin_tx(u8 **pptr, const struct bitcoin_tx *tx)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
u8 *lin = linearize_tx(tmpctx, tx);
|
|
|
|
towire_u8_array(pptr, lin, tal_count(lin));
|
|
|
|
|
2020-05-21 05:57:41 +02:00
|
|
|
towire_psbt(pptr, tx->psbt);
|
2020-05-15 12:30:43 +02:00
|
|
|
/* We only want to 'save' the amounts if every amount
|
|
|
|
* has been populated */
|
|
|
|
for (i = 0; i < tal_count(tx->input_amounts); i++) {
|
|
|
|
if (!tx->input_amounts[i]) {
|
|
|
|
towire_u16(pptr, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, we include the input amount set */
|
|
|
|
towire_u16(pptr, tal_count(tx->input_amounts));
|
|
|
|
for (i = 0; i < tal_count(tx->input_amounts); i++) {
|
|
|
|
assert(tx->input_amounts[i]);
|
|
|
|
towire_amount_sat(pptr, *tx->input_amounts[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bitcoin_tx_output *fromwire_bitcoin_tx_output(const tal_t *ctx,
|
|
|
|
const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
struct bitcoin_tx_output *output = tal(ctx, struct bitcoin_tx_output);
|
|
|
|
output->amount = fromwire_amount_sat(cursor, max);
|
|
|
|
u16 script_len = fromwire_u16(cursor, max);
|
|
|
|
output->script = fromwire_tal_arrn(output, cursor, max, script_len);
|
|
|
|
if (!*cursor)
|
|
|
|
return tal_free(output);
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
void towire_bitcoin_tx_output(u8 **pptr, const struct bitcoin_tx_output *output)
|
|
|
|
{
|
|
|
|
towire_amount_sat(pptr, output->amount);
|
|
|
|
towire_u16(pptr, tal_count(output->script));
|
|
|
|
towire_u8_array(pptr, output->script, tal_count(output->script));
|
|
|
|
}
|
|
|
|
|
|
|
|
void towire_witscript(u8 **pptr, const struct witscript *script)
|
|
|
|
{
|
|
|
|
if (script == NULL) {
|
|
|
|
towire_u16(pptr, 0);
|
|
|
|
} else {
|
|
|
|
assert(script->ptr != NULL);
|
|
|
|
towire_u16(pptr, tal_count(script->ptr));
|
|
|
|
towire_u8_array(pptr, script->ptr, tal_count(script->ptr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct witscript *fromwire_witscript(const tal_t *ctx, const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
struct witscript *retval = tal(ctx, struct witscript);
|
|
|
|
u16 len = fromwire_u16(cursor, max);
|
|
|
|
retval->ptr = fromwire_tal_arrn(retval, cursor, max, len);
|
|
|
|
if (!*cursor)
|
|
|
|
return tal_free(retval);
|
|
|
|
return retval;
|
|
|
|
}
|