Add an rpc to renepay that is similar to sendpay that handles BOLT11 and BOLT12 payments. This is not the most elegant solution but it is a workaround until we implement it into lightningd which has more development friction. Changelog-None. Signed-off-by: Lagrang3 <lagrang3@protonmail.com>
11 lines
274 B
C
11 lines
274 B
C
#ifndef LIGHTNING_PLUGINS_RENEPAY_SENDPAY_H
|
|
#define LIGHTNING_PLUGINS_RENEPAY_SENDPAY_H
|
|
|
|
#include "config.h"
|
|
|
|
struct command_result *json_renesendpay(struct command *cmd,
|
|
const char *buf,
|
|
const jsmntok_t *params);
|
|
|
|
#endif /* LIGHTNING_PLUGINS_RENEPAY_SENDPAY_H */
|