Don't bother to check if tor address in bootstrap list ends in .onion, it always shouldn't

This commit is contained in:
Kevin F 2022-03-20 13:00:33 -05:00
parent fd9e6f5ede
commit 5b5e5ef764
1 changed files with 4 additions and 3 deletions

View File

@ -12,6 +12,7 @@ from torfilepaths import control_socket
bootstrap_file = f'{os.path.dirname(os.path.realpath(__file__))}/bootstrap.txt'
def on_bootstrap(api, data):
try:
@ -30,10 +31,10 @@ def on_bootstrap(api, data):
socks_address, socks_port = get_socks()[0]
for address in bootstrap_nodes:
if address == config.get('tor.transport_address'):
if address == config.get('tor.transport_address') or not address:
continue
if not address.endswith('.onion'):
address += '.onion'
assert not address.endswith('.onion')
address += '.onion'
# Tell the gossip logic that this peer is ready to connect
# it will add it to data['peer_set'] if it responds to ping
Thread(