Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit

Permalink
Pass through gossip query optional message
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyRonning committed Apr 5, 2024
1 parent 7ffb770 commit 24053d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mutiny-core/src/peermanager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,9 @@ impl<S: MutinyStorage> RoutingMessageHandler for GossipMessageHandler<S> {
}

fn provided_init_features(&self, _their_node_id: &PublicKey) -> InitFeatures {
InitFeatures::empty()
let mut features = InitFeatures::empty();
features.set_gossip_queries_optional();
features
}
}

Expand Down

0 comments on commit 24053d7

Please sign in to comment.