Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions anchor/network/src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,8 @@ async fn build_anchor_behaviour(
.max_ihave_messages(32)
.build()?;

let gossipsub =
gossipsub::Behaviour::new(MessageAuthenticity::Signed(local_keypair.clone()), config)
.map_err(|e| Gossipsub(e.to_string()))?;
let gossipsub = gossipsub::Behaviour::new(MessageAuthenticity::Anonymous, config)
.map_err(|e| Gossipsub(e.to_string()))?;

let discovery = {
// Build and start the discovery sub-behaviour
Expand Down