mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
1abbc3d06a
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>
11 lines
295 B
C
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 */
|