mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
ef9463f6b1
Put ccan first, openssl next, then standard headers, then locals. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
25 lines
614 B
C
25 lines
614 B
C
#include <ccan/err/err.h>
|
|
#include <ccan/tal/tal.h>
|
|
#include <string.h>
|
|
#include "bitcoin/script.h"
|
|
#include "bitcoin/tx.h"
|
|
#include "find_p2sh_out.h"
|
|
|
|
u32 find_p2sh_out(const struct bitcoin_tx *tx, u8 *redeemscript)
|
|
{
|
|
/* This is the scriptPubKey commit tx will have */
|
|
u8 *p2sh = scriptpubkey_p2sh(NULL, redeemscript);
|
|
u32 i;
|
|
|
|
for (i = 0; i < tx->output_count; i++) {
|
|
if (tx->output[i].script_length != tal_count(p2sh))
|
|
continue;
|
|
if (memcmp(tx->output[i].script, p2sh, tal_count(p2sh)) == 0)
|
|
break;
|
|
}
|
|
if (i == tx->output_count)
|
|
errx(1, "No matching output in tx");
|
|
tal_free(p2sh);
|
|
return i;
|
|
}
|