correct downloadblocks bhash var name
This commit is contained in:
parent
bcc475dc61
commit
bd647c9ccc
@ -24,14 +24,13 @@ from onionrutils import blockmetadata, stringvalidators, validatemetadata
|
|||||||
def _should_download(comm_inst, block_hash):
|
def _should_download(comm_inst, block_hash):
|
||||||
ret_data = True
|
ret_data = True
|
||||||
if block_hash in comm_inst._core.getBlockList():
|
if block_hash in comm_inst._core.getBlockList():
|
||||||
#logger.debug('Block %s is already saved.' % (blockHash,))
|
|
||||||
ret_data = False
|
ret_data = False
|
||||||
else:
|
else:
|
||||||
if comm_inst._core._blacklist.inBlacklist(blockHash):
|
if comm_inst._core._blacklist.inBlacklist(block_hash):
|
||||||
ret_data = False
|
ret_data = False
|
||||||
if ret_data is False:
|
if ret_data is False:
|
||||||
try:
|
try:
|
||||||
del comm_inst.blockQueue[blockHash]
|
del comm_inst.blockQueue[block_hash]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
return ret_data
|
return ret_data
|
||||||
|
@ -1 +0,0 @@
|
|||||||
6i2apk7llawfcqy4y4xumqiedo7nltczmdk2cbvdztaqpkjnygwwz6qd.onion
|
|
Loading…
Reference in New Issue
Block a user