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