From 150e928d11c3359223dd4ffb2aadaca9242ce0eb Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Wed, 19 May 2021 22:27:12 +0200
Subject: [PATCH] [mod] #264: Remove remaining parse_endpoints()

---
 silkaj/network_tools.py | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/silkaj/network_tools.py b/silkaj/network_tools.py
index 3e67b8f7..5623feec 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 = {}
 
-- 
GitLab