remove stray debugging log

This commit is contained in:
Mononaut 2023-07-27 14:49:21 +09:00
parent 1fd5b975f1
commit 589adb95c3
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E

View File

@ -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);