only sub NewFile gossip msg

This commit is contained in:
boqiu 2024-12-04 17:05:46 +08:00
parent c548cb388c
commit 3bb242954b

View File

@ -15,12 +15,12 @@ pub const ANNOUNCE_FILE_TOPIC: &str = "announce_file";
pub const ANNOUNCE_CHUNKS_TOPIC: &str = "announce_chunks"; pub const ANNOUNCE_CHUNKS_TOPIC: &str = "announce_chunks";
pub const ANNOUNCE_SHARD_CONFIG_TOPIC: &str = "announce_shard_config"; pub const ANNOUNCE_SHARD_CONFIG_TOPIC: &str = "announce_shard_config";
pub const CORE_TOPICS: [GossipKind; 5] = [ pub const CORE_TOPICS: [GossipKind; 1] = [
GossipKind::NewFile, GossipKind::NewFile,
GossipKind::FindFile, // GossipKind::FindFile,
GossipKind::FindChunks, // GossipKind::FindChunks,
GossipKind::AnnounceFile, // GossipKind::AnnounceFile,
GossipKind::AnnounceChunks, // GossipKind::AnnounceChunks,
]; ];
/// A gossipsub topic which encapsulates the type of messages that should be sent and received over /// A gossipsub topic which encapsulates the type of messages that should be sent and received over