Skip to content

Commit 8ea3cd4

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 2b9709f commit 8ea3cd4

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
@@ -5,6 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false }
8+
lightning-types = { version = "0.1", path = "../lightning-types", default-features = false }
89
dnssec-prover = { version = "0.6", default-features = false, features = [ "std", "tokio" ] }
910
tokio = { version = "1.0", default-features = false, features = ["rt"] }
1011

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
#[cfg(not(any(target_pointer_width = "32", target_pointer_width = "64")))]
2527
const WE_REQUIRE_32_OR_64_BIT_USIZE: u8 = 424242;
2628

@@ -107,6 +109,12 @@ where
107109
None
108110
}
109111

112+
fn provided_node_features(&self) -> NodeFeatures {
113+
let mut features = NodeFeatures::empty();
114+
features.set_dns_resolution_optional();
115+
features
116+
}
117+
110118
fn release_pending_messages(&self) -> Vec<(DNSResolverMessage, MessageSendInstructions)> {
111119
core::mem::take(&mut *self.state.pending_replies.lock().unwrap())
112120
}

0 commit comments

Comments
 (0)