mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
83aea6b2bb
Instead of a boutique message, use a "real" channel_announcement for private channels (with fake sigs and pubkeys). This makes it far easier for gossmap to handle local channels. Backwards compatible update, since we update old stores. We also fix devtools/dump-gossipstore to know about the tombstone markers. Since we increment our channel_announce count for local channels now, the stats in the tests changed too. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
76 lines
2.0 KiB
Makefile
76 lines
2.0 KiB
Makefile
#! /usr/bin/make
|
|
|
|
GOSSIPD_HEADERS_WSRC := gossipd/gossipd_wiregen.h \
|
|
gossipd/gossipd_peerd_wiregen.h \
|
|
gossipd/gossip_store_wiregen.h \
|
|
gossipd/gossipd.h \
|
|
gossipd/gossip_store.h \
|
|
gossipd/queries.h \
|
|
gossipd/gossip_generation.h \
|
|
gossipd/routing.h \
|
|
gossipd/seeker.h
|
|
GOSSIPD_HEADERS := $(GOSSIPD_HEADERS_WSRC) gossipd/broadcast.h
|
|
|
|
GOSSIPD_SRC := $(GOSSIPD_HEADERS_WSRC:.h=.c)
|
|
GOSSIPD_OBJS := $(GOSSIPD_SRC:.c=.o)
|
|
$(GOSSIPD_OBJS): $(GOSSIPD_HEADERS)
|
|
|
|
# Make sure these depend on everything.
|
|
ALL_C_SOURCES += $(GOSSIPD_SRC)
|
|
ALL_C_HEADERS += $(GOSSIPD_HEADERS)
|
|
ALL_PROGRAMS += lightningd/lightning_gossipd
|
|
|
|
# Here's what lightningd depends on
|
|
LIGHTNINGD_CONTROL_HEADERS += gossipd/gossipd_wiregen.h
|
|
LIGHTNINGD_CONTROL_OBJS += gossipd/gossipd_wiregen.o
|
|
|
|
# Common source we use.
|
|
GOSSIPD_COMMON_OBJS := \
|
|
bitcoin/chainparams.o \
|
|
common/amount.o \
|
|
common/base32.o \
|
|
common/bech32.o \
|
|
common/bech32_util.o \
|
|
common/bigsize.o \
|
|
common/bip32.o \
|
|
common/channel_id.o \
|
|
common/crypto_state.o \
|
|
common/cryptomsg.o \
|
|
common/daemon.o \
|
|
common/daemon_conn.o \
|
|
common/decode_array.o \
|
|
common/derive_basepoints.o \
|
|
common/dev_disconnect.o \
|
|
common/features.o \
|
|
common/status_wiregen.o \
|
|
common/gossip_rcvd_filter.o \
|
|
common/key_derive.o \
|
|
common/memleak.o \
|
|
common/msg_queue.o \
|
|
common/node_id.o \
|
|
common/onionreply.o \
|
|
common/per_peer_state.o \
|
|
common/ping.o \
|
|
common/psbt_open.o \
|
|
common/pseudorand.o \
|
|
common/private_channel_announcement.o \
|
|
common/random_select.o \
|
|
common/setup.o \
|
|
common/status.o \
|
|
common/status_wire.o \
|
|
common/subdaemon.o \
|
|
common/timeout.o \
|
|
common/type_to_string.o \
|
|
common/utils.o \
|
|
common/utxo.o \
|
|
common/version.o \
|
|
common/wireaddr.o \
|
|
common/wire_error.o \
|
|
connectd/connectd_gossipd_wiregen.o \
|
|
lightningd/gossip_msg.o \
|
|
wire/onion$(EXP)_wiregen.o
|
|
|
|
lightningd/lightning_gossipd: $(GOSSIPD_OBJS) $(GOSSIPD_COMMON_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(HSMD_CLIENT_OBJS)
|
|
|
|
include gossipd/test/Makefile
|