mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
This means only a single gossmap, and they already share the fetchinvoice-noconnect option and autoconnect code. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Changed: Plugins: the `fetchinvoice` plugin has been combined into the `offers` plugin.
13 lines
420 B
C
13 lines
420 B
C
#ifndef LIGHTNING_PLUGINS_OFFERS_OFFER_H
|
|
#define LIGHTNING_PLUGINS_OFFERS_OFFER_H
|
|
#include "config.h"
|
|
#include <plugins/libplugin.h>
|
|
|
|
struct command_result *json_offer(struct command *cmd,
|
|
const char *buffer,
|
|
const jsmntok_t *params);
|
|
|
|
struct command_result *json_invoicerequest(struct command *cmd,
|
|
const char *buffer,
|
|
const jsmntok_t *params);
|
|
#endif /* LIGHTNING_PLUGINS_OFFERS_OFFER_H */
|