From 8aa1fe48dcfee12099512b12d546ec0305192e06 Mon Sep 17 00:00:00 2001 From: nymkappa Date: Tue, 22 Feb 2022 22:04:52 +0900 Subject: [PATCH] Remove debug console.log --- backend/src/routes.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/routes.ts b/backend/src/routes.ts index e38da16de..7fba2e66b 100644 --- a/backend/src/routes.ts +++ b/backend/src/routes.ts @@ -591,7 +591,6 @@ class Routes { const hashrates = await mining.$getHistoricalHashrates(req.params.interval ?? null); const difficulty = await mining.$getHistoricalDifficulty(req.params.interval ?? null); const oldestIndexedBlockTimestamp = await BlocksRepository.$oldestBlockTimestamp(); - console.log(oldestIndexedBlockTimestamp); res.header('Pragma', 'public'); res.header('Cache-control', 'public'); res.setHeader('Expires', new Date(Date.now() + 1000 * 300).toUTCString());