update peer crawling to be recursive

This commit is contained in:
lza_menace 2023-04-15 12:25:48 -07:00
parent 574761ec8e
commit a85198c9ed
4 changed files with 42 additions and 34 deletions

View file

@ -13,3 +13,4 @@ TOR_PORT = environ.get("TOR_PORT", 9050)
NODE_HOST = environ.get("NODE_HOST", "singapore.node.xmr.pm")
NODE_PORT = environ.get("NODE_PORT", 18080)
HEALTHY_BLOCK_DIFF = int(environ.get("HEALTHY_BLOCK_DIFF", 500))
PEER_LIFETIME = int(environ.get("PEER_LIFETIME", 96))