mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
gossipd: delete empty gossipd_peerd_wire.csv
gossipd no longer connects directly to per-peer daemons, so remove old file. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
401533667d
commit
ae5ad486ea
@ -95,8 +95,6 @@ CHANNELD_COMMON_OBJS := \
|
|||||||
common/version.o \
|
common/version.o \
|
||||||
common/wire_error.o \
|
common/wire_error.o \
|
||||||
common/wireaddr.o \
|
common/wireaddr.o \
|
||||||
gossipd/gossipd_peerd_wiregen.o \
|
|
||||||
gossipd/gossip_store_wiregen.o \
|
|
||||||
wire/fromwire.o \
|
wire/fromwire.o \
|
||||||
wire/towire.o
|
wire/towire.o
|
||||||
|
|
||||||
|
@ -45,8 +45,6 @@
|
|||||||
#include <common/wire_error.h>
|
#include <common/wire_error.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <gossipd/gossip_store_wiregen.h>
|
|
||||||
#include <gossipd/gossipd_peerd_wiregen.h>
|
|
||||||
#include <hsmd/hsmd_wiregen.h>
|
#include <hsmd/hsmd_wiregen.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <wally_bip32.h>
|
#include <wally_bip32.h>
|
||||||
|
@ -57,9 +57,7 @@ CLOSINGD_COMMON_OBJS := \
|
|||||||
common/utxo.o \
|
common/utxo.o \
|
||||||
common/version.o \
|
common/version.o \
|
||||||
common/wire_error.o \
|
common/wire_error.o \
|
||||||
common/wireaddr.o \
|
common/wireaddr.o
|
||||||
gossipd/gossip_store_wiregen.o \
|
|
||||||
gossipd/gossipd_peerd_wiregen.o
|
|
||||||
|
|
||||||
lightningd/lightning_closingd: $(CLOSINGD_OBJS) $(CLOSINGD_COMMON_OBJS) $(WIRE_OBJS) $(BITCOIN_OBJS) $(HSMD_CLIENT_OBJS)
|
lightningd/lightning_closingd: $(CLOSINGD_OBJS) $(CLOSINGD_COMMON_OBJS) $(WIRE_OBJS) $(BITCOIN_OBJS) $(HSMD_CLIENT_OBJS)
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
#include <common/version.h>
|
#include <common/version.h>
|
||||||
#include <common/wire_error.h>
|
#include <common/wire_error.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <gossipd/gossipd_peerd_wiregen.h>
|
|
||||||
#include <hsmd/hsmd_wiregen.h>
|
#include <hsmd/hsmd_wiregen.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#! /usr/bin/make
|
#! /usr/bin/make
|
||||||
|
|
||||||
GOSSIPD_HEADERS_WSRC := gossipd/gossipd_wiregen.h \
|
GOSSIPD_HEADERS_WSRC := gossipd/gossipd_wiregen.h \
|
||||||
gossipd/gossipd_peerd_wiregen.h \
|
|
||||||
gossipd/gossip_store_wiregen.h \
|
gossipd/gossip_store_wiregen.h \
|
||||||
gossipd/gossipd.h \
|
gossipd/gossipd.h \
|
||||||
gossipd/gossip_store.h \
|
gossipd/gossip_store.h \
|
||||||
@ -72,4 +71,10 @@ GOSSIPD_COMMON_OBJS := \
|
|||||||
|
|
||||||
lightningd/lightning_gossipd: $(GOSSIPD_OBJS) $(GOSSIPD_COMMON_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(HSMD_CLIENT_OBJS)
|
lightningd/lightning_gossipd: $(GOSSIPD_OBJS) $(GOSSIPD_COMMON_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(HSMD_CLIENT_OBJS)
|
||||||
|
|
||||||
|
# The CSV was removed, but the generated files may live on!
|
||||||
|
clean: clean-old-gossip-gen
|
||||||
|
|
||||||
|
clean-old-gossip-gen:
|
||||||
|
$(RM) gossipd_peerd_wiregen.*
|
||||||
|
|
||||||
include gossipd/test/Makefile
|
include gossipd/test/Makefile
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
#include <gossipd/gossip_store.h>
|
#include <gossipd/gossip_store.h>
|
||||||
#include <gossipd/gossip_store_wiregen.h>
|
#include <gossipd/gossip_store_wiregen.h>
|
||||||
#include <gossipd/gossipd.h>
|
#include <gossipd/gossipd.h>
|
||||||
#include <gossipd/gossipd_peerd_wiregen.h>
|
|
||||||
#include <gossipd/gossipd_wiregen.h>
|
#include <gossipd/gossipd_wiregen.h>
|
||||||
#include <gossipd/gossmap_manage.h>
|
#include <gossipd/gossmap_manage.h>
|
||||||
#include <gossipd/queries.h>
|
#include <gossipd/queries.h>
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
# These must be distinct from WIRE_CHANNEL_ANNOUNCEMENT etc. gossip msgs!
|
|
||||||
#include <bitcoin/short_channel_id.h>
|
|
||||||
#include <common/amount.h>
|
|
||||||
|
|
|
@ -82,9 +82,7 @@ OPENINGD_COMMON_OBJS := \
|
|||||||
common/utxo.o \
|
common/utxo.o \
|
||||||
common/version.o \
|
common/version.o \
|
||||||
common/wire_error.o \
|
common/wire_error.o \
|
||||||
common/wireaddr.o \
|
common/wireaddr.o
|
||||||
gossipd/gossip_store_wiregen.o \
|
|
||||||
gossipd/gossipd_peerd_wiregen.o
|
|
||||||
|
|
||||||
lightningd/lightning_openingd: $(OPENINGD_OBJS) $(OPENINGD_COMMON_OBJS) $(WIRE_OBJS) $(BITCOIN_OBJS) $(HSMD_CLIENT_OBJS)
|
lightningd/lightning_openingd: $(OPENINGD_OBJS) $(OPENINGD_COMMON_OBJS) $(WIRE_OBJS) $(BITCOIN_OBJS) $(HSMD_CLIENT_OBJS)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user