Skip to content

Commit

Permalink
cobinhood handling for InvalidNonce fix #2867
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed May 21, 2018
1 parent 6e6f67d commit 8168742
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/cobinhood.js
Expand Up @@ -3,7 +3,7 @@
// ---------------------------------------------------------------------------

const Exchange = require ('./base/Exchange');
const { ExchangeError, InsufficientFunds } = require ('./base/errors');
const { ExchangeError, InsufficientFunds, InvalidNonce } = require ('./base/errors');

// ---------------------------------------------------------------------------

Expand Down Expand Up @@ -128,6 +128,7 @@ module.exports = class cobinhood extends Exchange {
},
'exceptions': {
'insufficient_balance': InsufficientFunds,
'invalid_nonce': InvalidNonce,
},
});
}
Expand Down

0 comments on commit 8168742

Please sign in to comment.