mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
committed by
Rusty Russell
parent
356dcbba97
commit
19a0b78fec
@@ -70,7 +70,7 @@ LIGHTNINGD_SRC := \
|
|||||||
lightningd/onchain_control.c \
|
lightningd/onchain_control.c \
|
||||||
lightningd/opening_control.c \
|
lightningd/opening_control.c \
|
||||||
lightningd/options.c \
|
lightningd/options.c \
|
||||||
lightningd/params.c \
|
lightningd/param.c \
|
||||||
lightningd/pay.c \
|
lightningd/pay.c \
|
||||||
lightningd/payalgo.c \
|
lightningd/payalgo.c \
|
||||||
lightningd/peer_control.c \
|
lightningd/peer_control.c \
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
#include <lightningd/jsonrpc.h>
|
#include <lightningd/jsonrpc.h>
|
||||||
#include <lightningd/jsonrpc_errors.h>
|
#include <lightningd/jsonrpc_errors.h>
|
||||||
#include <lightningd/lightningd.h>
|
#include <lightningd/lightningd.h>
|
||||||
#include <lightningd/params.h>
|
#include <lightningd/param.h>
|
||||||
|
|
||||||
struct param {
|
struct param {
|
||||||
const char *name;
|
const char *name;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef LIGHTNING_LIGHTNINGD_PARAMS_H
|
#ifndef LIGHTNING_LIGHTNINGD_PARAM_H
|
||||||
#define LIGHTNING_LIGHTNINGD_PARAMS_H
|
#define LIGHTNING_LIGHTNINGD_PARAM_H
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -110,4 +110,4 @@ typedef bool(*param_cb)(const char *buffer, const jsmntok_t *tok, void *arg);
|
|||||||
(arg) + 0*sizeof(*(arg) == (jsmntok_t *)NULL), \
|
(arg) + 0*sizeof(*(arg) == (jsmntok_t *)NULL), \
|
||||||
sizeof(const jsmntok_t *)
|
sizeof(const jsmntok_t *)
|
||||||
|
|
||||||
#endif /* LIGHTNING_LIGHTNINGD_PARAMS_H */
|
#endif /* LIGHTNING_LIGHTNINGD_PARAM_H */
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <lightningd/jsonrpc.h>
|
#include <lightningd/jsonrpc.h>
|
||||||
|
|
||||||
#include <lightningd/params.c>
|
#include <lightningd/param.c>
|
||||||
#include <common/json.c>
|
#include <common/json.c>
|
||||||
#include <common/json_escaped.c>
|
#include <common/json_escaped.c>
|
||||||
#include <ccan/array_size/array_size.h>
|
#include <ccan/array_size/array_size.h>
|
||||||
Reference in New Issue
Block a user