@riocrypto/common-server 1.0.1145 → 1.0.1146

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.
@@ -206,7 +206,9 @@ class BitsoClient {
206
206
  },
207
207
  };
208
208
  const signedRequestConfig = this.signRequest(requestConfig);
209
- const { data } = yield (0, axios_1.default)(signedRequestConfig);
209
+ const res = yield (0, axios_1.default)(signedRequestConfig);
210
+ console.log("res is", res);
211
+ const data = res.data;
210
212
  if (!data.success) {
211
213
  throw new Error("Error getting Bitso fees");
212
214
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1145",
3
+ "version": "1.0.1146",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",