Fix dnsseed hostname
authorMatt Corallo <git@bluematt.me>
Mon, 20 May 2019 22:34:27 +0000 (18:34 -0400)
committerMatt Corallo <git@bluematt.me>
Mon, 20 May 2019 22:34:27 +0000 (18:34 -0400)
src/datastore.rs

index 60a8527a6377f71aa793718a670b2487741bfd8b..309d361fbb70517daf5159ae7d6c5958bfcc9c2c 100644 (file)
@@ -421,10 +421,10 @@ impl Store {
                                                        .choose_multiple(&mut rng, 12).iter().map(|e| e.ip()).collect();
                                        }
                                        for a in v4_set {
-                                               dns_buff += &format!("x{:x}.dnsseed.bluematt.me\tIN\tA\t{}\n", i, a);
+                                               dns_buff += &format!("x{:x}.dnsseed\tIN\tA\t{}\n", i, a);
                                        }
                                        for a in v6_set {
-                                               dns_buff += &format!("x{:x}.dnsseed.bluematt.me\tIN\tAAAA\t{}\n", i, a);
+                                               dns_buff += &format!("x{:x}.dnsseed\tIN\tAAAA\t{}\n", i, a);
                                        }
                                }
                        }