From 3f1f0f2cfecdf3fff815e76256e426f70b6a0e39 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Mon, 11 May 2020 23:28:47 -0700 Subject: [PATCH] update seed nodes Replacing mainnet seed nodes with testnet port with the correct (now-working) correct mainnet port. Kee wants to replace imaginary.seed due to SSL issues, it was using the IP, I've replaced it with the IP for public.loki.foundation for now. But when we enable SSL, we'll need hosts. And for the dude having DNS issues with our seeds, we will either need to disable SSL verification or keep an http port open for him --- SignalServiceKit/src/Loki/API/LokiAPI+SwarmAPI.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SignalServiceKit/src/Loki/API/LokiAPI+SwarmAPI.swift b/SignalServiceKit/src/Loki/API/LokiAPI+SwarmAPI.swift index a31e9f412..8458f9752 100644 --- a/SignalServiceKit/src/Loki/API/LokiAPI+SwarmAPI.swift +++ b/SignalServiceKit/src/Loki/API/LokiAPI+SwarmAPI.swift @@ -27,7 +27,7 @@ public extension LokiAPI { #if TESTNET fileprivate static let seedNodePool: Set = [ "http://public.loki.foundation:38157" ] #else - fileprivate static let seedNodePool: Set = [ "http://storage.seed1.loki.network:22023", "http://storage.seed2.loki.network:38157", "http://149.56.148.124:38157" ] + fileprivate static let seedNodePool: Set = [ "http://storage.seed1.loki.network:22023", "http://storage.seed2.loki.network:22023", "http://144.76.164.202:22023" ] #endif internal static var randomSnodePool: Set = []