summaryrefslogtreecommitdiffstats
path: root/lib/src/reactor/gossip/strategy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/src/reactor/gossip/strategy.rs')
-rw-r--r--lib/src/reactor/gossip/strategy.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/src/reactor/gossip/strategy.rs b/lib/src/reactor/gossip/strategy.rs
index b54dddc..6fe9d1a 100644
--- a/lib/src/reactor/gossip/strategy.rs
+++ b/lib/src/reactor/gossip/strategy.rs
@@ -15,7 +15,7 @@ pub struct LogStrategy;
#[async_trait::async_trait]
impl GossipHandlingStrategy for LogStrategy {
- async fn handle_gossip_message(profile: Arc<RwLock<Profile>>, source: ipfs::PeerId, msg: GossipMessage) -> Result<()> {
+ async fn handle_gossip_message(_profile: Arc<RwLock<Profile>>, source: ipfs::PeerId, msg: GossipMessage) -> Result<()> {
use std::convert::TryFrom;
match msg {
GossipMessage::CurrentProfileState { peer_id, cid } => {