core-lightning/channeld/channeld.h
Rusty Russell 1abbc3d06a channeld: simply exit if hsmd vanishes.
We currently die when gossipd vanishes, but our direct connection will
go away.  We then complain if the node is shutting down while we're talking
to hsmd.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-02-08 11:15:52 +10:30

11 lines
295 B
C

#ifndef LIGHTNING_CHANNELD_CHANNELD_H
#define LIGHTNING_CHANNELD_CHANNELD_H
#include "config.h"
#include <ccan/short_types/short_types.h>
#include <ccan/take/take.h>
#include <ccan/tal/tal.h>
const u8 *hsm_req(const tal_t *ctx, const u8 *req TAKES);
#endif /* LIGHTNING_CHANNELD_CHANNELD_H */