From cc49c8407c21405daceb7e816be407b0fe283c97 Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Thu, 16 May 2019 14:46:50 +0200 Subject: [PATCH 1/2] 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 From 5baeb5f538627472037749fe9fa201f394168579 Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Thu, 16 May 2019 16:09:03 +0200 Subject: [PATCH 2/2] fix examples --- example_daemon_settings.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/example_daemon_settings.yml b/example_daemon_settings.yml index d3dd1224f..0b163f6ea 100644 --- a/example_daemon_settings.yml +++ b/example_daemon_settings.yml @@ -4,8 +4,9 @@ share_usage_data: True lbryum_servers: - - lbryumx1.lbry.io:50001 - - lbryumx2.lbry.io:50001 + - lbryumx1.lbry.com:50001 + - lbryumx2.lbry.com:50001 + - lbryumx4.lbry.com:50001 blockchain_name: lbrycrd_main