clippy: fix wzp-relay lint issues (empty doc, unused var, TokenExhausted, Default, dead field)

This commit is contained in:
Siavash Sameni
2026-05-12 15:40:55 +04:00
parent 283edd38eb
commit ffded2a913
4 changed files with 18 additions and 11 deletions

View File

@@ -63,6 +63,12 @@ pub struct PresenceRegistry {
peers: HashMap<SocketAddr, PeerRelay>,
}
impl Default for PresenceRegistry {
fn default() -> Self {
Self::new()
}
}
impl PresenceRegistry {
/// Create an empty registry.
pub fn new() -> Self {