Skip to content

Commit

Permalink
Fix lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
miracle2k committed Jun 4, 2018
1 parent 53f756e commit 68d8495
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions js/poloniex.js
Expand Up @@ -187,14 +187,14 @@ module.exports = class poloniex extends Exchange {
quote = this.commonCurrencyCode (quote);
let symbol = base + '/' + quote;
let minimalCost = {
'BTC': 0.0001,
'ETH': 0.0001,
'XMR': 0.0001,
'USDT': 1.0
'BTC': 0.0001,
'ETH': 0.0001,
'XMR': 0.0001,
'USDT': 1.0,
}[quote];
if (minimalCost === undefined) {
minimalCost == 0.00000000;
};
minimalCost = 0.00000000;
}
result.push (this.extend (this.fees['trading'], {
'id': id,
'symbol': symbol,
Expand Down

0 comments on commit 68d8495

Please sign in to comment.