From b3bd166620b6ca4eda82685611aa9d838a126c5b Mon Sep 17 00:00:00 2001 From: Johann Bauer Date: Thu, 8 Mar 2018 21:55:24 +0100 Subject: [PATCH] Move Cosignerpool to HTTPS --- plugins/cosigner_pool/qt.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/cosigner_pool/qt.py b/plugins/cosigner_pool/qt.py index 52d6a8f34..524d62b76 100644 --- a/plugins/cosigner_pool/qt.py +++ b/plugins/cosigner_pool/qt.py @@ -43,9 +43,7 @@ import sys import traceback -PORT = 12344 -HOST = 'cosigner.electrum.org' -server = ServerProxy('http://%s:%d'%(HOST,PORT), allow_none=True) +server = ServerProxy('https://cosigner.electrum.org/', allow_none=True) class Listener(util.DaemonThread):