Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Dec 13, 2024
1 parent 8ef29c3 commit e3a1cd3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions iroh/src/discovery/pkarr/dht.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ impl Discovery for DhtDiscovery {
"discovered node info from relay {:?}",
node_addr
);
Some(anyhow::Ok(DiscoveryItem {
Some(Ok(DiscoveryItem {
node_addr,
provenance: "relay",
last_updated: None,
Expand Down Expand Up @@ -409,10 +409,6 @@ impl Discovery for DhtDiscovery {
}

Some(stream.filter_map(|t| t).boxed())
// Some(Box::pin(ResolveStream {
// dht_resolve,
// relay_resolve,
// }))
}
}

Expand Down

0 comments on commit e3a1cd3

Please sign in to comment.