From 9fcc883281023bdf8c94792a7019ea155c5acc02 Mon Sep 17 00:00:00 2001 From: Marco van Dijk Date: Tue, 19 Jul 2022 20:51:59 +0200 Subject: [PATCH] remove leftover logs --- backend/src/routes/livepeer.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/src/routes/livepeer.js b/backend/src/routes/livepeer.js index 086fd30..32894a2 100644 --- a/backend/src/routes/livepeer.js +++ b/backend/src/routes/livepeer.js @@ -2663,9 +2663,7 @@ apiRouter.get("/getOrchestratorENS", async (req, res) => { let orchestratorObj = JSON.parse(JSON.stringify(reqObj)); // Replace delegators with ENS domain names for (var idx = 0; idx < orchestratorObj.delegators.length; idx++) { - console.log(orchestratorObj.delegators[idx]); for (var idx2 = 0; idx2 < ensDomainCache.length; idx2++) { - console.log(ensDomainCache[idx2]); if (ensDomainCache[idx2].address == orchestratorObj.delegators[idx].id) { if (ensDomainCache[idx2].domain){ orchestratorObj.delegators[idx].id = ensDomainCache[idx2].domain;