From a27989d476496aa8eb9bb1424232b95d1acb8b44 Mon Sep 17 00:00:00 2001 From: wellenreiter01 Date: Sat, 2 Nov 2019 17:15:23 +0100 Subject: [PATCH] New peer nodes for Feathercoin (#917) * Change of hard coded peer servers for Feathercoin The domain of the peer server hard coded in coins.py for Feathercoin has expired. Two new peers added. --- electrumx/lib/coins.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/electrumx/lib/coins.py b/electrumx/lib/coins.py index 76f8fd7..e373adf 100644 --- a/electrumx/lib/coins.py +++ b/electrumx/lib/coins.py @@ -1950,7 +1950,9 @@ class Feathercoin(Coin): RPC_PORT = 9337 REORG_LIMIT = 2000 PEERS = [ - 'electrumx-ch-1.feathercoin.ch s t', + 'electrumx-gb-1.feathercoin.network s t', + 'electrumx-gb-2.feathercoin.network s t', + 'electrumx-de-1.feathercoin.network s t', ]