Revert "Signal GossipQuery support when using IgnoringMessagHandler"

This reverts commit 843079df72.
This commit is contained in:
Elias Rohrer 2024-07-12 10:49:16 +02:00
parent 78c0eaae55
commit 5a39cc2b19
No known key found for this signature in database
GPG key ID: 36153082BDF676FD

View file

@ -126,9 +126,7 @@ impl RoutingMessageHandler for IgnoringMessageHandler {
fn handle_query_short_channel_ids(&self, _their_node_id: &PublicKey, _msg: msgs::QueryShortChannelIds) -> Result<(), LightningError> { Ok(()) }
fn provided_node_features(&self) -> NodeFeatures { NodeFeatures::empty() }
fn provided_init_features(&self, _their_node_id: &PublicKey) -> InitFeatures {
let mut features = InitFeatures::empty();
features.set_gossip_queries_optional();
features
InitFeatures::empty()
}
fn processing_queue_high(&self) -> bool { false }
}