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
pull/191/head
Ryan Tharp 5 years ago committed by GitHub
parent 6187926685
commit 3f1f0f2cfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -27,7 +27,7 @@ public extension LokiAPI {
#if TESTNET
fileprivate static let seedNodePool: Set<String> = [ "http://public.loki.foundation:38157" ]
#else
fileprivate static let seedNodePool: Set<String> = [ "http://storage.seed1.loki.network:22023", "http://storage.seed2.loki.network:38157", "http://149.56.148.124:38157" ]
fileprivate static let seedNodePool: Set<String> = [ "http://storage.seed1.loki.network:22023", "http://storage.seed2.loki.network:22023", "http://144.76.164.202:22023" ]
#endif
internal static var randomSnodePool: Set<LokiAPITarget> = []

Loading…
Cancel
Save