2018-02-20 21:59:09 +01:00
|
|
|
#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 02:59:23 +02:00
|
|
|
#include <stdbool.h>
|
2018-02-20 21:59:09 +01:00
|
|
|
|
2021-06-14 23:09:49 +02:00
|
|
|
struct channel;
|
2021-09-15 02:59:23 +02:00
|
|
|
struct lightningd;
|
2022-01-11 02:13:59 +01:00
|
|
|
struct peer_fd;
|
2018-02-20 21:59:09 +01:00
|
|
|
|
2023-07-31 13:33:22 +02:00
|
|
|
/* Find cmd_id for closing command, if any. */
|
|
|
|
const char *cmd_id_from_close_command(const tal_t *ctx,
|
|
|
|
struct lightningd *ld, struct channel *channel);
|
|
|
|
|
|
|
|
/* Resolve a close command for a channel that will be closed soon. */
|
|
|
|
void resolve_close_command(struct lightningd *ld, struct channel *channel,
|
|
|
|
bool cooperative, const struct bitcoin_tx *close_tx);
|
2021-09-15 02:59:23 +02:00
|
|
|
|
2018-02-20 21:59:09 +01:00
|
|
|
void peer_start_closingd(struct channel *channel,
|
2022-01-11 02:13:59 +01:00
|
|
|
struct peer_fd *peer_fd);
|
2018-02-20 21:59:09 +01:00
|
|
|
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_CLOSING_CONTROL_H */
|