From 92734c193a40b89d55822d62a2a49f39200e1e5e Mon Sep 17 00:00:00 2001 From: Paul Shapiro Date: Mon, 30 Jul 2018 12:00:25 -0400 Subject: [PATCH] hostAPI/response_parser_utils: commented some logs --- hostAPI/response_parser_utils.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/hostAPI/response_parser_utils.js b/hostAPI/response_parser_utils.js index a7b4e35..821c45e 100644 --- a/hostAPI/response_parser_utils.js +++ b/hostAPI/response_parser_utils.js @@ -370,9 +370,9 @@ function Parsed_UnspentOuts__sync( !finalized_unspentOutput_atI_beforeSplice || typeof finalized_unspentOutput_atI_beforeSplice === "undefined" ) { - console.warn( - `This unspent output at i ${i} was literally undefined! Skipping.`, - ); // NOTE: Looks like the i-- code below should exit earlier if this is necessary + // console.warn( + // `This unspent output at i ${i} was literally undefined! Skipping.`, + // ); // NOTE: Looks like the i-- code below should exit earlier if this is necessary continue; } const beforeSplice__tx_pub_key = @@ -414,17 +414,17 @@ function Parsed_UnspentOuts__sync( } i--; } else { - console.log( - "💬 Output used as mixin (" + - key_image + - "/" + - finalized_unspentOutputs[i].spend_key_images[j] + - ")", - ); + // console.log( + // "💬 Output used as mixin (" + + // key_image + + // "/" + + // finalized_unspentOutputs[i].spend_key_images[j] + + // ")", + // ); } } } - console.log("Unspent outs: " + JSON.stringify(finalized_unspentOutputs)); + // console.log("Unspent outs: " + JSON.stringify(finalized_unspentOutputs)); const unusedOuts = finalized_unspentOutputs.slice(0); const returnValuesByKey = { unspentOutputs: finalized_unspentOutputs,