You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
610 B
17 lines
610 B
#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 */
|
|
|