improved some debug info and REMOVED STRAY INPUT()

This commit is contained in:
Kevin Froman 2018-04-18 21:18:38 -05:00
parent 417b2d7a79
commit c356b68987
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
2 changed files with 3 additions and 3 deletions

View File

@ -181,7 +181,7 @@ class OnionrCommunicate:
continue
if self._utils.hasBlock(i):
continue
logger.debug('Exchanged block (blockList): ' + i)
#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')
@ -230,7 +230,7 @@ class OnionrCommunicate:
if len(data) < 120:
logger.debug('Block text:\n' + data)
else:
logger.warn("Failed to validate " + hash)
logger.warn("Failed to validate " + hash + " " + " hash calculated was " + digest)
return

View File

@ -96,10 +96,10 @@ class OnionrUtils:
retVal = False
if newAdderList != False:
for adder in newAdderList.split(','):
logger.debug('Seeing if we should add ' + adder)
if not adder in self._core.listAdders(randomOrder=False) and adder.strip() != self.getMyAddress():
if self._core.addAddress(adder):
logger.info('Added ' + adder + ' to db.', timestamp=True)
input()
retVal = True
else:
logger.debug(adder + " is either our address or already in our DB")