Browse Source

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

ppa-0.6.1
Rusty Russell 8 years ago
parent
commit
ca142a0b47
  1. 2
      Makefile
  2. 2
      daemon/Makefile
  3. 4
      daemon/commit_tx.c
  4. 0
      daemon/commit_tx.h

2
Makefile

@ -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 \

2
daemon/Makefile

@ -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 \

4
commit_tx.c → daemon/commit_tx.c

@ -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"

0
commit_tx.h → daemon/commit_tx.h

Loading…
Cancel
Save