From 6e63429fab80b5819c9794d73c0b612ac953a8c6 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Thu, 2 Feb 2017 14:06:27 +0100 Subject: [PATCH] gossip: Cleanup queued_message The list and timestamp are no longer used since we are using the intmap based broadcast queue. --- daemon/broadcast.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/daemon/broadcast.h b/daemon/broadcast.h index d9a79b5c2..ebc28da07 100644 --- a/daemon/broadcast.h +++ b/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 {