pub type DhtHashTable<V> = Arc<RwLock<HashMap<Hash, V>>>;
Our local hash table, storing DHT keys and values
pub struct DhtHashTable<V> { /* private fields */ }