mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
c536616bee
Now we hand peers off to the gossip daemon, to do the INIT handshake and re-transmit/receive gossip. They may stay there forever if neither we nor them wants to open a channel. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
243 B
C
10 lines
243 B
C
#ifndef LIGHTNING_LIGHTNINGD_GOSSIP_CONTROL_H
|
|
#define LIGHTNING_LIGHTNINGD_GOSSIP_CONTROL_H
|
|
#include "config.h"
|
|
#include <stdbool.h>
|
|
|
|
struct lightningd;
|
|
|
|
void gossip_init(struct lightningd *ld);
|
|
#endif /* LIGHTNING_LIGHTNINGD_HSM_CONTROL_H */
|