Skip to content

Commit

Permalink
Merge pull request #20 from coinsambacom/fix/isistrade-book
Browse files Browse the repository at this point in the history
Fix: fix isistrade orderbook
  • Loading branch information
itxtoledo authored Nov 22, 2023
2 parents ad3d13c + e917156 commit 66456ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@coinsamba/js-exchanges-connector",
"description": "Collection of JavaScript implementations of cryptocurrency exchange APIs",
"version": "2.1.12",
"version": "2.1.13",
"repository": "[email protected]:coinsambacom/js-exchanges-connector.git",
"author": "Gustavo <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/connectors/isistrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export class isistrade<T = any> extends Exchange<T> {
quantity,
}: IsisTradeOrderbookOrder): IOrderbookOrder {
return {
price: Number(price),
amount: Number(quantity),
price: parseBRLNumberString(price),
amount: parseBRLNumberString(quantity),
};
}

Expand Down

0 comments on commit 66456ba

Please sign in to comment.