Skip to content

Commit

Permalink
remove semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Oct 16, 2023
1 parent a6b72ca commit ffe2523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dex/dexalot/dexalot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ export class Dexalot extends SimpleExchange implements IDex<DexalotData> {
lQty = (lQty * BigInt(10 ** (baseToken.decimals * 2))) /
(lPrice * BigInt(10 ** quoteToken.decimals));
rQty = (rQty * BigInt(10 ** (baseToken.decimals * 2))) /
(rPrice * BigInt(10 ** quoteToken.decimals));;
(rPrice * BigInt(10 ** quoteToken.decimals));
}
price = lPrice + ((rPrice - lPrice) * (amt - lQty)) / (rQty - lQty);
amount = amounts[i];
Expand Down

0 comments on commit ffe2523

Please sign in to comment.