mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
18 lines
610 B
C
18 lines
610 B
C
|
#ifndef LIGHTNING_COMMON_PRIVATE_CHANNEL_ANNOUNCEMENT_H
|
||
|
#define LIGHTNING_COMMON_PRIVATE_CHANNEL_ANNOUNCEMENT_H
|
||
|
#include "config.h"
|
||
|
#include <ccan/short_types/short_types.h>
|
||
|
#include <ccan/tal/tal.h>
|
||
|
|
||
|
struct short_channel_id;
|
||
|
struct node_id;
|
||
|
|
||
|
/* Helper to create a fake channel announcement for local channels. */
|
||
|
const u8 *private_channel_announcement(const tal_t *ctx,
|
||
|
const struct short_channel_id *scid,
|
||
|
const struct node_id *local_node_id,
|
||
|
const struct node_id *remote_node_id,
|
||
|
const u8 *features);
|
||
|
|
||
|
#endif /* LIGHTNING_COMMON_PRIVATE_CHANNEL_ANNOUNCEMENT_H */
|