Skip to content

Commit

Permalink
poloniex linting and transpilation fix #2999
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed May 31, 2018
1 parent 8339e3b commit 5efaa16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/poloniex.js
Expand Up @@ -843,7 +843,7 @@ module.exports = class poloniex extends Exchange {
throw new DDoSProtection (feedback);
} else if (error.indexOf ('Total must be at least') >= 0) {
throw new InvalidOrder (feedback);
} else if (error.indexOf('This account is frozen.') >= 0) {
} else if (error.indexOf ('This account is frozen.') >= 0) {
throw new AccountSuspended (feedback);
} else if (error.indexOf ('Not enough') >= 0) {
throw new InsufficientFunds (feedback);
Expand Down

0 comments on commit 5efaa16

Please sign in to comment.