From 589adb95c304bad01a9d32c12264325f341a2954 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Thu, 27 Jul 2023 14:49:21 +0900 Subject: [PATCH] remove stray debugging log --- backend/src/api/blocks.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index 9ad9278d0..ba7a55149 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -160,7 +160,6 @@ class Blocks { // Require the first transaction to be a coinbase const coinbase = transactionMap[txIds[0]]; if (!coinbase || !coinbase.vin[0].is_coinbase) { - console.log(coinbase); const msg = `Expected first tx in a block to be a coinbase, but found something else`; logger.err(msg); throw new Error(msg);