do not claim hash is invalid when there was no hash

This commit is contained in:
Kevin Froman 2018-01-28 20:19:30 -06:00
parent 0ca84c9759
commit da80723686
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
1 changed files with 2 additions and 1 deletions

View File

@ -111,7 +111,8 @@ class OnionrCommunicate:
logger.debug('Exchanged block (blockList): ' + i)
if not self._utils.validateHash(i):
# skip hash if it isn't valid
logger.warn('Hash ' + i + ' is not valid')
if len(i.strip()) != 0
logger.warn('Hash ' + i + ' is not valid')
continue
else:
logger.debug('Adding ' + i + ' to hash database...')