hashiverse_lib/client/peer_tracker/mod.rs
1//! # Local peer set and XOR-distance walk
2//!
3//! The client's working memory of the network — a Kademlia-style deduplicated
4//! list of peers persisted across restarts, plus the stateful cursor that walks
5//! those peers in order of closeness to a target id. Every DHT operation the
6//! client performs ultimately goes through this pair.
7
8pub mod peer_tracker;
9pub mod peer_iterator;