fixed bytes encoding on getdata endpoint
This commit is contained in:
parent
4fbfd89b12
commit
2ba42ba145
@ -64,6 +64,7 @@ def download_blocks_from_communicator(comm_inst):
|
||||
if not comm_inst.shutdown and peerUsed.strip() != '':
|
||||
logger.info("Attempting to download %s from %s..." % (blockHash[:12], peerUsed))
|
||||
content = peeraction.peer_action(comm_inst, peerUsed, 'getdata/' + blockHash, max_resp_size=3000000) # block content from random peer (includes metadata)
|
||||
|
||||
if content != False and len(content) > 0:
|
||||
try:
|
||||
content = content.encode()
|
||||
|
@ -47,6 +47,7 @@ def get_block_data(publicAPI, data):
|
||||
try:
|
||||
block = block.encode() # Encode in case data is binary
|
||||
except AttributeError:
|
||||
if len(block) == 0:
|
||||
abort(404)
|
||||
block = bytesconverter.str_to_bytes(block)
|
||||
resp = block
|
||||
|
Loading…
Reference in New Issue
Block a user