Add allRelaysActive output to network info

This commit is contained in:
2022-08-14 10:58:28 +01:00
parent ed1f3cdca7
commit 6cc07c9171
3 changed files with 14 additions and 1 deletions

View File

@@ -62,6 +62,18 @@ def getActiveRelays(net):
return activeRelays
def relayIsActive(net, num):
"""
Check if a relay is active.
:param net: network
:param num: relay number
:rtype: bool
:return: True if relay is active, False otherwise
"""
activeRelays = getActiveRelays(net)
return num in activeRelays
def allRelaysActive(net):
"""
Check if all enabled relays are active and authenticated.