@multiplechain/bitcoin 0.1.9 → 0.1.10

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,7 +1,7 @@
1
1
  {
2
2
  "namespace": "multiplechain",
3
3
  "name": "@multiplechain/bitcoin",
4
- "version": "0.1.9",
4
+ "version": "0.1.10",
5
5
  "description": "Bitcoin JS provider",
6
6
  "scripts": {
7
7
  "serve": "parcel test.html --no-cache --dist-dir test",
package/src/provider.js CHANGED
@@ -94,7 +94,6 @@ class Provider {
94
94
 
95
95
  let startCallback = async (data) => {
96
96
  try {
97
- console.log(data);
98
97
  let tx = this.Transaction(data.hash);
99
98
  await tx.getData();
100
99
  callback(subscription, tx);
@@ -106,7 +105,6 @@ class Provider {
106
105
  }
107
106
 
108
107
  ws.addEventListener('message', (res) => {
109
- console.log(res);
110
108
  setTimeout(() => {
111
109
  startCallback(JSON.parse(res.data));
112
110
  }, 6000);