core-lightning/lightningd/onchain_control.h

15 lines
385 B
C
Raw Normal View History

#ifndef LIGHTNING_LIGHTNINGD_ONCHAIN_CONTROL_H
#define LIGHTNING_LIGHTNINGD_ONCHAIN_CONTROL_H
#include "config.h"
#include <ccan/short_types/short_types.h>
struct channel;
struct bitcoin_tx;
struct block;
enum watch_result onchaind_funding_spent(struct channel *channel,
const struct bitcoin_tx *tx,
u32 blockheight);
#endif /* LIGHTNING_LIGHTNINGD_ONCHAIN_CONTROL_H */