From 81687420f7c0d735128c1bbdeafd2cf38ae9cc39 Mon Sep 17 00:00:00 2001 From: Igor Kroitor Date: Mon, 21 May 2018 13:27:22 +0300 Subject: [PATCH] cobinhood handling for InvalidNonce fix #2867 --- js/cobinhood.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/cobinhood.js b/js/cobinhood.js index 63c6c6eaf370..ce487e154786 100644 --- a/js/cobinhood.js +++ b/js/cobinhood.js @@ -3,7 +3,7 @@ // --------------------------------------------------------------------------- const Exchange = require ('./base/Exchange'); -const { ExchangeError, InsufficientFunds } = require ('./base/errors'); +const { ExchangeError, InsufficientFunds, InvalidNonce } = require ('./base/errors'); // --------------------------------------------------------------------------- @@ -128,6 +128,7 @@ module.exports = class cobinhood extends Exchange { }, 'exceptions': { 'insufficient_balance': InsufficientFunds, + 'invalid_nonce': InvalidNonce, }, }); }