You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
411 B
17 lines
411 B
4 years ago
|
#ifndef LIGHTNING_PLUGINS_OFFERS_H
|
||
|
#define LIGHTNING_PLUGINS_OFFERS_H
|
||
|
#include "config.h"
|
||
|
#include <common/json.h>
|
||
|
|
||
|
struct command_result;
|
||
|
struct command;
|
||
|
|
||
|
/* Helper to send a reply */
|
||
|
struct command_result *WARN_UNUSED_RESULT
|
||
|
send_onion_reply(struct command *cmd,
|
||
|
const char *jsonbuf,
|
||
|
const jsmntok_t *replytok,
|
||
|
const char *replyfield,
|
||
|
const u8 *replydata);
|
||
|
#endif /* LIGHTNING_PLUGINS_OFFERS_H */
|