diff --git a/silkaj/network_tools.py b/silkaj/network_tools.py index 3e67b8f7d682b7e03ba6a9b5e4fda6efc46e1152..5623feecaa6b9dde12ee08cd5f0fd7bb5cb7ef87 100644 --- a/silkaj/network_tools.py +++ b/silkaj/network_tools.py @@ -31,27 +31,6 @@ from silkaj.constants import ( ) -def parse_endpoints(rep): - """ - endpoints[]{"domain", "ip4", "ip6", "pubkey"} - list of dictionaries - reps: raw endpoints - """ - i, j, endpoints = 0, 0, [] - while i < len(rep): - if rep[i]["status"] == "UP": - while j < len(rep[i]["endpoints"]): - ep = parse_endpoint(rep[i]["endpoints"][j]) - j += 1 - if ep is None: - break - ep["pubkey"] = rep[i]["pubkey"] - endpoints.append(ep) - i += 1 - j = 0 - return endpoints - - def singleton(class_): instances = {}