moved length check in hash validation

This commit is contained in:
Kevin Froman 2018-01-28 20:54:39 -06:00
parent 1c3e886ba0
commit 8c6a04f03d
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
1 changed files with 3 additions and 2 deletions

View File

@ -108,13 +108,14 @@ class OnionrCommunicate:
logger.debug('BLOCKS: \n' + blocks)
blockList = blocks.split('\n')
for i in blockList:
if len(i.strip()) == 0:
continue
if self._utils.hasBlock(i):
continue
logger.debug('Exchanged block (blockList): ' + i)
if not self._utils.validateHash(i):
# skip hash if it isn't valid
if len(i.strip()) != 0:
logger.warn('Hash ' + i + ' is not valid')
logger.warn('Hash ' + i + ' is not valid')
continue
else:
logger.debug('Adding ' + i + ' to hash database...')