Removing console logs

This commit is contained in:
Chris Troutner
2022-01-29 17:37:22 -08:00
parent 79f5adaf6b
commit 7648c96a70
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -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 })
}
+1 -1
View File
@@ -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)}`)