mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-20 07:34:24 +01:00
bech32: move to common/
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
committed by
Christian Decker
parent
79443d6f94
commit
78d0a5e840
@@ -1,4 +1,5 @@
|
|||||||
COMMON_SRC := \
|
COMMON_SRC := \
|
||||||
|
common/bech32.c \
|
||||||
common/bip32.c \
|
common/bip32.c \
|
||||||
common/channel_config.c \
|
common/channel_config.c \
|
||||||
common/close_tx.c \
|
common/close_tx.c \
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ default: lightningd-all
|
|||||||
|
|
||||||
# Common source we use.
|
# Common source we use.
|
||||||
LIGHTNINGD_COMMON_OBJS := \
|
LIGHTNINGD_COMMON_OBJS := \
|
||||||
|
common/bech32.o \
|
||||||
common/bip32.o \
|
common/bip32.o \
|
||||||
common/channel_config.o \
|
common/channel_config.o \
|
||||||
common/configdir.o \
|
common/configdir.o \
|
||||||
@@ -40,7 +41,6 @@ LIGHTNINGD_COMMON_OBJS := \
|
|||||||
common/withdraw_tx.o
|
common/withdraw_tx.o
|
||||||
|
|
||||||
LIGHTNINGD_SRC := \
|
LIGHTNINGD_SRC := \
|
||||||
lightningd/bech32.c \
|
|
||||||
lightningd/bitcoind.c \
|
lightningd/bitcoind.c \
|
||||||
lightningd/bolt11.c \
|
lightningd/bolt11.c \
|
||||||
lightningd/build_utxos.c \
|
lightningd/build_utxos.c \
|
||||||
|
|||||||
@@ -7,11 +7,11 @@
|
|||||||
#include <ccan/endian/endian.h>
|
#include <ccan/endian/endian.h>
|
||||||
#include <ccan/structeq/structeq.h>
|
#include <ccan/structeq/structeq.h>
|
||||||
#include <ccan/tal/str/str.h>
|
#include <ccan/tal/str/str.h>
|
||||||
|
#include <common/bech32.h>
|
||||||
#include <common/utils.h>
|
#include <common/utils.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <hsmd/gen_hsm_wire.h>
|
#include <hsmd/gen_hsm_wire.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <lightningd/bech32.h>
|
|
||||||
#include <lightningd/bolt11.h>
|
#include <lightningd/bolt11.h>
|
||||||
#include <lightningd/hsm_control.h>
|
#include <lightningd/hsm_control.h>
|
||||||
#include <lightningd/jsonrpc.h>
|
#include <lightningd/jsonrpc.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user