2018-02-21 07:29:09 +10:30
|
|
|
#ifndef LIGHTNING_LIGHTNINGD_CLOSING_CONTROL_H
|
|
|
|
#define LIGHTNING_LIGHTNINGD_CLOSING_CONTROL_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <ccan/short_types/short_types.h>
|
2021-09-15 10:29:23 +09:30
|
|
|
#include <stdbool.h>
|
2018-02-21 07:29:09 +10:30
|
|
|
|
2021-06-15 06:39:49 +09:30
|
|
|
struct channel;
|
2021-09-15 10:29:23 +09:30
|
|
|
struct lightningd;
|
2019-06-04 03:41:25 +09:30
|
|
|
struct per_peer_state;
|
2018-02-21 07:29:09 +10:30
|
|
|
|
2021-09-15 10:29:23 +09:30
|
|
|
void resolve_close_command(struct lightningd *ld, struct channel *channel,
|
|
|
|
bool cooperative);
|
|
|
|
|
2018-02-21 07:29:09 +10:30
|
|
|
void peer_start_closingd(struct channel *channel,
|
2021-06-15 06:39:49 +09:30
|
|
|
struct per_peer_state *pps);
|
2018-02-21 07:29:09 +10:30
|
|
|
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_CLOSING_CONTROL_H */
|