EchoAlice/my_kademlia

skip duplicate imports

Closed this issue · 3 comments

use std::string::String;

this import is already in the rust "prelude" so you don't need to pull it in yourself

same thing w/ HashMap here:

store: std::collections::HashMap<Vec<u8>, Vec<u8>>, // Same storage as portal network.

and here:

store: std::collections::HashMap::new(),

fixed in #7