cleanup: Removed broadcast_queue from dstate

This is a left-over from the gossip refactoring.
This commit is contained in:
Christian Decker 2017-02-03 13:50:39 +01:00
parent c2764c10c5
commit eb75ae55e4
2 changed files with 0 additions and 4 deletions

View file

@ -53,7 +53,6 @@ static struct lightningd_state *lightningd_state(void)
dstate->reexec = NULL;
dstate->external_ip = NULL;
dstate->announce = NULL;
list_head_init(&dstate->broadcast_queue);
dstate->invoices = invoices_init(dstate);
return dstate;
}

View file

@ -144,8 +144,5 @@ struct lightningd_state {
/* Announce timer. */
struct oneshot *announce;
/* Outgoing messages queued for the staggered broadcast */
struct list_head broadcast_queue;
};
#endif /* LIGHTNING_DAEMON_LIGHTNING_H */