gossip: Cleanup queued_message

The list and timestamp are no longer used since we are using the
intmap based broadcast queue.
This commit is contained in:
Christian Decker 2017-02-02 14:06:27 +01:00 committed by Rusty Russell
parent fb814a7a9e
commit 6e63429fab

View File

@ -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 {