mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
7efc0efab1
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
35 lines
785 B
C
35 lines
785 B
C
#include "bitcoin/script.h"
|
|
#include "bitcoin/tx.h"
|
|
#include "find_p2sh_out.h"
|
|
#include <ccan/err/err.h>
|
|
#include <ccan/tal/tal.h>
|
|
#include <string.h>
|
|
|
|
static u32 find_output(const struct bitcoin_tx *tx, const u8 *scriptpubkey)
|
|
{
|
|
u32 i;
|
|
|
|
for (i = 0; i < tx->output_count; i++) {
|
|
if (scripteq(tx->output[i].script,
|
|
tx->output[i].script_length,
|
|
scriptpubkey,
|
|
tal_count(scriptpubkey)))
|
|
break;
|
|
}
|
|
/* FIXME: Return failure! */
|
|
if (i == tx->output_count)
|
|
errx(1, "No matching output in tx");
|
|
return i;
|
|
}
|
|
|
|
u32 find_p2wsh_out(const struct bitcoin_tx *tx, const u8 *witnessscript)
|
|
{
|
|
/* This is the scriptPubKey commit tx will have */
|
|
u8 *p2wsh = scriptpubkey_p2wsh(NULL, witnessscript);
|
|
u32 i;
|
|
|
|
i = find_output(tx, p2wsh);
|
|
tal_free(p2wsh);
|
|
return i;
|
|
}
|