From cc49c8407c21405daceb7e816be407b0fe283c97 Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Thu, 16 May 2019 14:46:50 +0200 Subject: [PATCH] add missing wallet server switch to .com domain --- lbrynet/conf.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lbrynet/conf.py b/lbrynet/conf.py index f27ace57b..8b7434b50 100644 --- a/lbrynet/conf.py +++ b/lbrynet/conf.py @@ -520,14 +520,15 @@ class Config(CLIConfig): ('reflector.lbry.io', 5566) ]) lbryum_servers = Servers("SPV wallet servers", [ - ('lbryumx1.lbry.io', 50001), - ('lbryumx2.lbry.io', 50001) + ('lbryumx1.lbry.com', 50001), # US EAST + ('lbryumx2.lbry.com', 50001), # US EAST + ('lbryumx4.lbry.com', 50001) #EU ]) known_dht_nodes = Servers("Known nodes for bootstrapping connection to the DHT", [ - ('lbrynet1.lbry.io', 4444), # US EAST - ('lbrynet2.lbry.io', 4444), # US WEST - ('lbrynet3.lbry.io', 4444), # EU - ('lbrynet4.lbry.io', 4444) # ASIA + ('lbrynet1.lbry.com', 4444), # US EAST + ('lbrynet2.lbry.com', 4444), # US WEST + ('lbrynet3.lbry.com', 4444), # EU + ('lbrynet4.lbry.com', 4444) # ASIA ]) # comment server uses a single string because requests are made to the /api resource