mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
f4e94147a7
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
11 lines
315 B
C
11 lines
315 B
C
#ifndef LIGHTNING_FIND_P2SH_OUT_H
|
|
#define LIGHTNING_FIND_P2SH_OUT_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
struct bitcoin_tx;
|
|
|
|
/* Routine for finding a specific p2wsh output. */
|
|
u32 find_p2wsh_out(const struct bitcoin_tx *tx, const u8 *witnessscript);
|
|
#endif /* LIGHTNING_FIND_P2SH_OUT_H */
|