mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-13 12:32:55 +02:00
Changelog-EXPERIMENTAL: JSON-RPC: `createproof` to create a payment proof for a (successful) BOLT12 payment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
307 B
C
12 lines
307 B
C
#ifndef LIGHTNING_PLUGINS_OFFERS_PROOF_H
|
|
#define LIGHTNING_PLUGINS_OFFERS_PROOF_H
|
|
#include "config.h"
|
|
|
|
struct command_result;
|
|
struct command;
|
|
|
|
struct command_result *json_createproof(struct command *cmd,
|
|
const char *buffer,
|
|
const jsmntok_t *params);
|
|
|
|
#endif /* LIGHTNING_PLUGINS_OFFERS_PROOF_H */
|