mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
11 lines
344 B
C
11 lines
344 B
C
|
#ifndef LIGHTNING_COMMON_JSON_BLINDED_PATH_H
|
||
|
#define LIGHTNING_COMMON_JSON_BLINDED_PATH_H
|
||
|
#include "config.h"
|
||
|
#include <common/json_parse_simple.h>
|
||
|
|
||
|
/* Extract reply path from this JSON */
|
||
|
struct blinded_path *
|
||
|
json_to_blinded_path(const tal_t *ctx, const char *buffer, const jsmntok_t *tok);
|
||
|
|
||
|
#endif /* LIGHTNING_COMMON_JSON_BLINDED_PATH_H */
|