2022-11-09 13:02:01 +10:30
|
|
|
#ifndef LIGHTNING_PLUGINS_OFFERS_INV_HOOK_H
|
|
|
|
|
#define LIGHTNING_PLUGINS_OFFERS_INV_HOOK_H
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#include <plugins/libplugin.h>
|
|
|
|
|
|
|
|
|
|
/* We got an onionmessage with an invoice! reply_path could be NULL. */
|
|
|
|
|
struct command_result *handle_invoice(struct command *cmd,
|
|
|
|
|
const u8 *invbin,
|
2024-07-17 12:53:25 +09:30
|
|
|
struct blinded_path *reply_path STEALS,
|
|
|
|
|
const struct secret *secret);
|
2022-11-09 13:02:01 +10:30
|
|
|
|
|
|
|
|
#endif /* LIGHTNING_PLUGINS_OFFERS_INV_HOOK_H */
|