Skip to content

Commit f5c215e

Browse files
committed
Set the dns_resolution feature in OMDomainResolver
`OMDomainResolver` actually does support building DNSSECProofs, so should be setting the `dns_resolution` `NodeFeature` flag.
1 parent fab5ac6 commit f5c215e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

lightning-dns-resolver/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ edition = "2021"
99

1010
[dependencies]
1111
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
12+
lightning-types = { version = "0.1", path = "../lightning-types", default-features = false }
1213
dnssec-prover = { version = "0.6", default-features = false, features = [ "std", "tokio" ] }
1314
tokio = { version = "1.0", default-features = false, features = ["rt"] }
1415

lightning-dns-resolver/src/lib.rs

+8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ use lightning::onion_message::messenger::{
2121
MessageSendInstructions, Responder, ResponseInstruction,
2222
};
2323

24+
use lightning_types::features::NodeFeatures;
25+
2426
use tokio::runtime::Handle;
2527

2628
#[cfg(not(any(target_pointer_width = "32", target_pointer_width = "64")))]
@@ -128,6 +130,12 @@ where
128130
None
129131
}
130132

133+
fn provided_node_features(&self) -> NodeFeatures {
134+
let mut features = NodeFeatures::empty();
135+
features.set_dns_resolution_optional();
136+
features
137+
}
138+
131139
fn release_pending_messages(&self) -> Vec<(DNSResolverMessage, MessageSendInstructions)> {
132140
core::mem::take(&mut *self.state.pending_replies.lock().unwrap())
133141
}

0 commit comments

Comments
 (0)