Skip to content

Commit cbdb8cb

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 8e94142 commit cbdb8cb

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")))]
@@ -139,6 +141,12 @@ where
139141
None
140142
}
141143

144+
fn provided_node_features(&self) -> NodeFeatures {
145+
let mut features = NodeFeatures::empty();
146+
features.set_dns_resolution_optional();
147+
features
148+
}
149+
142150
fn release_pending_messages(&self) -> Vec<(DNSResolverMessage, MessageSendInstructions)> {
143151
core::mem::take(&mut *self.state.pending_replies.lock().unwrap())
144152
}

0 commit comments

Comments
 (0)