Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

This commit is contained in:
Rusty Russell 2016-08-18 14:23:45 +09:30
parent 440fec099b
commit ca142a0b47
4 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,6 @@ BITCOIN_OBJS := $(BITCOIN_SRC:.c=.o)
CORE_SRC := \
close_tx.c \
commit_tx.c \
find_p2sh_out.c \
lightning.pb-c.c \
opt_bits.c \
@ -151,7 +150,6 @@ BITCOIN_HEADERS := bitcoin/address.h \
bitcoin/varint.h
CORE_HEADERS := close_tx.h \
commit_tx.h \
find_p2sh_out.h \
names.h \
opt_bits.h \

View File

@ -17,6 +17,7 @@ DAEMON_SRC := \
daemon/bitcoind.c \
daemon/chaintopology.c \
daemon/channel.c \
daemon/commit_tx.c \
daemon/controlled_time.c \
daemon/cryptopkt.c \
daemon/dns.c \
@ -52,6 +53,7 @@ DAEMON_HEADERS := \
daemon/bitcoind.h \
daemon/chaintopology.h \
daemon/channel.h \
daemon/commit_tx.h \
daemon/configdir.h \
daemon/controlled_time.h \
daemon/cryptopkt.h \

View File

@ -3,9 +3,9 @@
#include "bitcoin/script.h"
#include "bitcoin/shadouble.h"
#include "bitcoin/tx.h"
#include "channel.h"
#include "commit_tx.h"
#include "daemon/channel.h"
#include "daemon/htlc.h"
#include "htlc.h"
#include "overflows.h"
#include "permute_tx.h"
#include "remove_dust.h"