Merge pull request #194 from Permissionless-Software-Foundation/ct-unstable

fix(getMutableData): Adding additional debuging to console
This commit is contained in:
Chris Troutner
2022-05-10 15:11:39 -07:00
committed by GitHub
3 changed files with 11 additions and 11 deletions
+7 -7
View File
@@ -9,7 +9,7 @@
"version": "2.0.0",
"license": "MIT",
"dependencies": {
"@psf/bch-js": "6.2.14",
"@psf/bch-js": "6.3.4",
"apidoc": "^0.26.0",
"axios": "^0.21.1",
"bitcore-lib-cash": "^8.23.1",
@@ -833,9 +833,9 @@
}
},
"node_modules/@psf/bch-js": {
"version": "6.2.14",
"resolved": "http://94.130.170.209:4873/@psf%2fbch-js/-/bch-js-6.2.14.tgz",
"integrity": "sha512-tHF2DyBRgYHTvdhVY58dOzbCOuKQrhc9QvYyj+K4c7mfsVgprjU+FTcM9ZFcE3A+0G/92VBP4/kkfccqfdLlWA==",
"version": "6.3.4",
"resolved": "http://94.130.170.209:4873/@psf%2fbch-js/-/bch-js-6.3.4.tgz",
"integrity": "sha512-TgT1R+PUJomdpUUuOY/PDb8Nl6PDbF9qohlbkEv7cvkT1WvkN1Obma4b2tziL45mxhKVM3ASYBgAGw8yURiiXQ==",
"license": "MIT",
"dependencies": {
"@chris.troutner/bip32-utils": "1.0.5",
@@ -16055,9 +16055,9 @@
}
},
"@psf/bch-js": {
"version": "6.2.14",
"resolved": "http://94.130.170.209:4873/@psf%2fbch-js/-/bch-js-6.2.14.tgz",
"integrity": "sha512-tHF2DyBRgYHTvdhVY58dOzbCOuKQrhc9QvYyj+K4c7mfsVgprjU+FTcM9ZFcE3A+0G/92VBP4/kkfccqfdLlWA==",
"version": "6.3.4",
"resolved": "http://94.130.170.209:4873/@psf%2fbch-js/-/bch-js-6.3.4.tgz",
"integrity": "sha512-TgT1R+PUJomdpUUuOY/PDb8Nl6PDbF9qohlbkEv7cvkT1WvkN1Obma4b2tziL45mxhKVM3ASYBgAGw8yURiiXQ==",
"requires": {
"@chris.troutner/bip32-utils": "1.0.5",
"@psf/bip21": "2.0.1",
+1 -1
View File
@@ -31,7 +31,7 @@
"node": ">=10.15.1"
},
"dependencies": {
"@psf/bch-js": "6.2.14",
"@psf/bch-js": "6.3.4",
"apidoc": "^0.26.0",
"axios": "^0.21.1",
"bitcore-lib-cash": "^8.23.1",
+3 -3
View File
@@ -375,8 +375,8 @@ class PsfSlpIndexer {
return result
} catch (err) {
console.log('Error in getMutableData().')
// console.log('Error in getMutableData(): ', err)
// console.log('Error in getMutableData().')
console.log('Error in getMutableData(): ', err)
throw err
}
}
@@ -432,7 +432,7 @@ class PsfSlpIndexer {
return response.data
} catch (error) {
console.log('Error in getCIDData().')
console.log('Error in getCIDData(): ', error)
throw error
}
}