Browse Source

gossip: Cleanup queued_message

The list and timestamp are no longer used since we are using the
intmap based broadcast queue.
ppa-0.6.1
Christian Decker 8 years ago
committed by Rusty Russell
parent
commit
6e63429fab
  1. 7
      daemon/broadcast.h

7
daemon/broadcast.h

@ -15,15 +15,8 @@ struct queued_message {
/* Unique tag specifying the msg origin */
void *tag;
/* Timestamp for `channel_update`s and `node_announcement`s, 0
* for `channel_announcement`s */
/*u32 timestamp;*/
/* Serialized payload */
u8 *payload;
//FIXME(cdecker) Remove after migrating to intmap
struct list_node list;
};
struct broadcast_state {

Loading…
Cancel
Save