Change version of Tor that supports v3 onion services to 0.3.5.7

This commit is contained in:
Micah Lee 2019-01-20 12:15:27 -08:00
parent 89ccf0306b
commit b1d5b29cf6
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -411,7 +411,7 @@ class Onion(object):
# Does this version of Tor support next-gen ('v3') onions? # Does this version of Tor support next-gen ('v3') onions?
# Note, this is the version of Tor where this bug was fixed: # Note, this is the version of Tor where this bug was fixed:
# https://trac.torproject.org/projects/tor/ticket/28619 # https://trac.torproject.org/projects/tor/ticket/28619
self.supports_v3_onions = self.tor_version >= Version('0.4.0.0') self.supports_v3_onions = self.tor_version >= Version('0.3.5.7')
def is_authenticated(self): def is_authenticated(self):
""" """