do not claim hash is invalid when there was no hash
This commit is contained in:
parent
da80723686
commit
8b3a09f5af
@ -111,7 +111,7 @@ class OnionrCommunicate:
|
||||
logger.debug('Exchanged block (blockList): ' + i)
|
||||
if not self._utils.validateHash(i):
|
||||
# skip hash if it isn't valid
|
||||
if len(i.strip()) != 0
|
||||
if len(i.strip()) != 0:
|
||||
logger.warn('Hash ' + i + ' is not valid')
|
||||
continue
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user