mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
a782ea75b5
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.
14 lines
420 B
C
14 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 */
|