From 7ca284f433e8311198051e3d06ad0a49720da51b Mon Sep 17 00:00:00 2001 From: Aaron Imming Date: Wed, 6 Mar 2019 14:27:13 +0800 Subject: [PATCH 1/2] PleaseAuthenticate --- src/botPage/bot/Interpreter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/botPage/bot/Interpreter.js b/src/botPage/bot/Interpreter.js index d6fbb51939..47ba1f0c0d 100644 --- a/src/botPage/bot/Interpreter.js +++ b/src/botPage/bot/Interpreter.js @@ -10,6 +10,7 @@ const unrecoverableErrors = [ 'InvalidCurrency', 'ContractBuyValidationError', 'NotDefaultCurrency', + 'PleaseAuthenticate', ]; const botInitialized = bot => bot && bot.tradeEngine.options; const botStarted = bot => botInitialized(bot) && bot.tradeEngine.tradeOptions; From 579790b1a9e35689c83fcc3318a3ab5821282ca1 Mon Sep 17 00:00:00 2001 From: Aaron Imming Date: Wed, 6 Mar 2019 14:46:55 +0800 Subject: [PATCH 2/2] FinancialAssessmentRequired --- src/botPage/bot/Interpreter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/botPage/bot/Interpreter.js b/src/botPage/bot/Interpreter.js index 47ba1f0c0d..affa998278 100644 --- a/src/botPage/bot/Interpreter.js +++ b/src/botPage/bot/Interpreter.js @@ -11,6 +11,7 @@ const unrecoverableErrors = [ 'ContractBuyValidationError', 'NotDefaultCurrency', 'PleaseAuthenticate', + 'FinancialAssessmentRequired', ]; const botInitialized = bot => bot && bot.tradeEngine.options; const botStarted = bot => botInitialized(bot) && bot.tradeEngine.tradeOptions;