Skip to content

Commit

Permalink
fixup! channeld: Code to implement splicing
Browse files Browse the repository at this point in the history
Implement channel reestablish for splicing
  • Loading branch information
ddustin committed May 11, 2023
1 parent 77f2834 commit c60293f
Show file tree
Hide file tree
Showing 16 changed files with 419 additions and 426 deletions.
10 changes: 8 additions & 2 deletions channeld/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ CHANNELD_SRC := channeld/channeld.c \
channeld/commit_tx.c \
channeld/full_channel.c \
channeld/splice.c \
channeld/inflight.c \
channeld/channeld_wiregen.c \
channeld/watchtower.c

Expand All @@ -26,8 +27,13 @@ ALL_C_HEADERS += $(CHANNELD_HEADERS)
ALL_PROGRAMS += lightningd/lightning_channeld

# Here's what lightningd depends on
LIGHTNINGD_CONTROL_HEADERS += channeld/channeld_wiregen.h
LIGHTNINGD_CONTROL_OBJS += channeld/channeld_wiregen.o
LIGHTNINGD_CONTROL_HEADERS += \
channeld/channeld_wiregen.h \
channeld/inflight.h
LIGHTNINGD_CONTROL_OBJS += \
channeld/channeld_wiregen.o \
channeld/inflight.o


# Common source we use.
CHANNELD_COMMON_OBJS := \
Expand Down
Loading

0 comments on commit c60293f

Please sign in to comment.