correct downloadblocks bhash var name

This commit is contained in:
Kevin Froman 2019-07-03 21:37:20 -05:00
parent bcc475dc61
commit 6a11ba38eb
1 changed files with 2 additions and 3 deletions

View File

@ -24,14 +24,13 @@ from onionrutils import blockmetadata, stringvalidators, validatemetadata
def _should_download(comm_inst, block_hash):
ret_data = True
if block_hash in comm_inst._core.getBlockList():
#logger.debug('Block %s is already saved.' % (blockHash,))
ret_data = False
else:
if comm_inst._core._blacklist.inBlacklist(blockHash):
if comm_inst._core._blacklist.inBlacklist(blocka_hash):
ret_data = False
if ret_data is False:
try:
del comm_inst.blockQueue[blockHash]
del comm_inst.blockQueue[block_hash]
except KeyError:
pass
return ret_data