Adjust stemstream to not try to diffuse a block if there is no time left in epoch
This commit is contained in:
parent
70c7eca9c5
commit
7caaa829f2
@ -30,11 +30,14 @@ async def do_stem_stream(
|
||||
try:
|
||||
# queues can't block because we're in async
|
||||
bl = block_queue.get(block=False)
|
||||
assert hasattr(bl, 'raw')
|
||||
except Empty:
|
||||
remaining_time = d_phase.remaining_time()
|
||||
await sleep(1)
|
||||
else:
|
||||
break
|
||||
if not remaining_time:
|
||||
break
|
||||
logging.info("Sending block over dandelion++")
|
||||
|
||||
block_size = str(len(bl.raw)).zfill(BLOCK_SIZE_LEN)
|
||||
|
Loading…
Reference in New Issue
Block a user