Fixed index error when checking for pow

This commit is contained in:
Kevin Froman 2018-05-14 20:10:05 -05:00
parent 0f455b50c9
commit 973b8583b6
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
1 changed files with 6 additions and 2 deletions

View File

@ -102,8 +102,12 @@ class OnionrUtils:
if newKeyList != False:
for key in newKeyList.split(','):
key = key.split('-')
if len(key[0]) > 60 or len(key[1]) > 1000:
logger.warn('%s or its pow value is too large.' % key[0])
try:
if len(key[0]) > 60 or len(key[1]) > 1000:
logger.warn('%s or its pow value is too large.' % key[0])
continue
except IndexError:
logger.warn('No pow token')
continue
if self._core._crypto.blake2bHash(base64.b64decode(key[1]) + key[0].encode()).startswith('0000'):
if not key[0] in self._core.listPeers(randomOrder=False) and type(key) != None and key[0] != self._core._crypto.pubKey: