@psf/bch-js 6.7.1 → 6.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@psf/bch-js",
3
- "version": "6.7.1",
3
+ "version": "6.7.2",
4
4
  "description": "A JavaScript library for working with Bitcoin Cash, eCash, and SLP Tokens",
5
5
  "author": "Chris Troutner <chris.troutner@gmail.com>",
6
6
  "contributors": [
package/src/blockchain.js CHANGED
@@ -197,6 +197,9 @@ class Blockchain {
197
197
  )
198
198
  return response.data
199
199
  } catch (error) {
200
+ console.log('Error in bch-js/blockchain.js/getBlockCount()')
201
+ console.log('blockchain.js restURL: ', this.restURL)
202
+
200
203
  if (error.response && error.response.data) throw error.response.data
201
204
  else throw error
202
205
  }
package/src/electrumx.js CHANGED
@@ -720,6 +720,8 @@ class ElectrumX {
720
720
  return this.sortConfTxs(modifiedTxs, sortingOrder)
721
721
  } catch (err) {
722
722
  console.log('Error in util.js/sort0ConfTxs')
723
+ console.log('electrumx.js restURL: ', this.restURL)
724
+
723
725
  throw err
724
726
  }
725
727
  }