do not start lan on qubes

This commit is contained in:
Kevin Froman 2020-08-10 01:03:32 -05:00
parent feb8004c95
commit 87b8655b83
6 changed files with 25 additions and 9 deletions

View file

@ -160,3 +160,11 @@ class PrivateEndpoints:
'generating_blocks'
))
)
@private_endpoints_bp.route('/getblockstoupload')
def get_blocks_to_upload() -> Response:
return Response(
','.join(
g.too_many.get_by_string('DeadSimpleKV').get('blocksToUpload')
)
)