mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
It's 2b7ad577d7a790b302bd1aa044b22c809c76e49d, which reverts the point32 changes. It also restores send_invoice in `invoice`, which we had removed from spec and put into the recurrence patch. I originally had implemented compatibility, but other changes which followed this are far too widespread. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-EXPERIMENTAL: offers: complete rework of spec from other teams (yay!) breaks previous compatibility (boo!)
16 lines
470 B
C
16 lines
470 B
C
#ifndef LIGHTNING_PLUGINS_OFFERS_OFFER_H
|
|
#define LIGHTNING_PLUGINS_OFFERS_OFFER_H
|
|
#include "config.h"
|
|
#include <plugins/libplugin.h>
|
|
|
|
extern struct pubkey id;
|
|
extern bool offers_enabled;
|
|
|
|
struct command_result *json_offer(struct command *cmd,
|
|
const char *buffer,
|
|
const jsmntok_t *params);
|
|
|
|
struct command_result *json_offerout(struct command *cmd,
|
|
const char *buffer,
|
|
const jsmntok_t *params);
|
|
#endif /* LIGHTNING_PLUGINS_OFFERS_OFFER_H */
|