@riocrypto/common-server 1.0.1146 → 1.0.1147
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.
|
@@ -213,7 +213,9 @@ class BitsoClient {
|
|
|
213
213
|
throw new Error("Error getting Bitso fees");
|
|
214
214
|
}
|
|
215
215
|
const fees = data.payload.fees;
|
|
216
|
+
console.log("fees", fees);
|
|
216
217
|
const book = fees.find((obj) => obj.book === `${crypto.toLocaleLowerCase()}_mxn`);
|
|
218
|
+
console.log("book", book);
|
|
217
219
|
if (!book) {
|
|
218
220
|
throw new Error("Unable to get fees");
|
|
219
221
|
}
|