From 7648c96a7095e2641a82fe86ae9d9edf78cc259e Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sat, 29 Jan 2022 17:37:22 -0800 Subject: [PATCH] Removing console logs --- src/adapters/index.js | 6 +++--- src/use-cases/bch/index.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/adapters/index.js b/src/adapters/index.js index b4d1db1..f5191a9 100644 --- a/src/adapters/index.js +++ b/src/adapters/index.js @@ -44,9 +44,9 @@ class Adapters { // Instantiate bch-js with the JWT token, and overwrite the placeholder for bch-js. this.bchjs = await this.fullStackJwt.instanceBchjs() } else { - console.log( - `Initializing bchjs with this restURL: ${this.config.apiServer}` - ) + // console.log( + // `Initializing bchjs with this restURL: ${this.config.apiServer}` + // ) this.bchjs = new BCHJS({ restURL: this.config.apiServer }) } diff --git a/src/use-cases/bch/index.js b/src/use-cases/bch/index.js index 1ff2932..57a089f 100644 --- a/src/use-cases/bch/index.js +++ b/src/use-cases/bch/index.js @@ -111,7 +111,7 @@ class BCHUseCases { for (let i = 0; i < txids.length; i++) { const thisTxid = txids[i] - console.log(`this.bchjs.restURL: ${this.bchjs.restURL}`) + // console.log(`this.bchjs.restURL: ${this.bchjs.restURL}`) const data = await this.bchjs.Transaction.get(thisTxid.toString()) // console.log(`data: ${JSON.stringify(data, null, 2)}`)