mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
1b9b160108
It's fairly obscure, and let's not make everyone link it. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
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 */
|