tremove http protocols from gui selector - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 44464e7e21fca805d070fd98fdc8b88789d03d9e DIR parent 52450289ff2613f7e0e6b736a45254c35cf37ade HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 19 Sep 2014 10:46:18 +0200 remove http protocols from gui selector Diffstat: M gui/qt/network_dialog.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- DIR diff --git a/gui/qt/network_dialog.py b/gui/qt/network_dialog.py t@@ -27,8 +27,10 @@ from electrum import DEFAULT_SERVERS, DEFAULT_PORTS from util import * -protocol_names = ['TCP', 'HTTP', 'SSL', 'HTTPS'] -protocol_letters = 'thsg' +#protocol_names = ['TCP', 'HTTP', 'SSL', 'HTTPS'] +#protocol_letters = 'thsg' +protocol_names = ['TCP', 'SSL'] +protocol_letters = 'ts' class NetworkDialog(QDialog): def __init__(self, network, config, parent):