mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-01 03:24:41 +01:00
5b6b012af9
Tested and works with both sides funding! Yay. Doesn't do any amount of reasonable cleanup or handling of errors.
17 lines
498 B
C
17 lines
498 B
C
#ifndef LIGHTNING_PLUGINS_SPENDER_OPENCHANNEL_H
|
|
#define LIGHTNING_PLUGINS_SPENDER_OPENCHANNEL_H
|
|
#include "config.h"
|
|
#include <ccan/tal/tal.h>
|
|
|
|
struct wally_psbt;
|
|
|
|
extern const struct plugin_notification openchannel_notifs[];
|
|
extern const size_t num_openchannel_notifs;
|
|
|
|
struct command_result *
|
|
openchannel_init_dest(struct multifundchannel_destination *dest);
|
|
|
|
void openchannel_init(struct plugin *p, const char *b,
|
|
const jsmntok_t *t);
|
|
#endif /* LIGHTNING_PLUGINS_SPENDER_OPENCHANNEL_H */
|