Skip to content

Commit

Permalink
Merge pull request #70 from singlesly/fix#68
Browse files Browse the repository at this point in the history
feat: bingx-response logs error #68
  • Loading branch information
singlesly committed Feb 3, 2024
2 parents ec10d38 + 5c976b6 commit 41f05e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bingx/endpoints/bingx-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class BingxRequest<R> implements BingxRequestInterface<R> {
try {
return JSON.parse(JSON.stringify(JSONBigNumber.parse(res)));
} catch (e) {
console.error(e);
console.error('BingxRequest.http.transformResponse', e, res);
return res;
}
},
Expand Down

0 comments on commit 41f05e8

Please sign in to comment.