mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
4b22760cf9
Signed-off-by: Christian Decker <decker.christian@gmail.com>
19 lines
514 B
C
19 lines
514 B
C
#ifndef LIGHTNING_LIGHTNINGD_ONCHAIN_CONTROL_H
|
|
#define LIGHTNING_LIGHTNINGD_ONCHAIN_CONTROL_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <lightningd/lightningd.h>
|
|
#include <onchaind/gen_onchain_wire.h>
|
|
|
|
struct channel;
|
|
struct bitcoin_tx;
|
|
struct block;
|
|
|
|
enum watch_result onchaind_funding_spent(struct channel *channel,
|
|
const struct bitcoin_tx *tx,
|
|
u32 blockheight);
|
|
|
|
void onchaind_replay_channels(struct lightningd *ld);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_ONCHAIN_CONTROL_H */
|