diff --git a/grin.toml b/grin.toml index 32777a91..b0d588de 100644 --- a/grin.toml +++ b/grin.toml @@ -25,7 +25,7 @@ api_http_addr = "127.0.0.1:13413" db_root = ".grin" -#How to seed this server, can be None, List or WebStatic +#How to seed this server, can be None, List, WebStatic or DNSSeed # #seeding_type = "None" diff --git a/grin/src/seed.rs b/grin/src/seed.rs index efa4d219..5a4e0cae 100644 --- a/grin/src/seed.rs +++ b/grin/src/seed.rs @@ -32,7 +32,12 @@ use p2p; use util::LOGGER; const SEEDS_URL: &'static str = "http://grin-tech.org/seeds.txt"; -const DNS_SEEDS: &'static [&'static str] = &["seed.grin-tech.org", "seed.grin.lesceller.com"]; +// DNS Seeds with contact email associated +const DNS_SEEDS: &'static [&'static str] = &[ + "seed.grin-tech.org", // igno.peverell@protonmail.com + "seed.grin.lesceller.com", // q.lesceller@gmail.com + "grin-seed.owncrypto.de", // roll@yourowncryp.to +]; pub fn connect_and_monitor( p2p_server: Arc, diff --git a/grin/src/types.rs b/grin/src/types.rs index df6ddb94..c4368b14 100644 --- a/grin/src/types.rs +++ b/grin/src/types.rs @@ -119,7 +119,7 @@ pub enum Seeding { impl Default for Seeding { fn default() -> Seeding { - Seeding::WebStatic + Seeding::DNSSeed } }