remove http protocols from gui selector

This commit is contained in:
ThomasV 2014-09-19 10:46:18 +02:00
parent 52450289ff
commit 44464e7e21
1 changed files with 4 additions and 2 deletions

View File

@ -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):