From 11e55dd305834244bf798d1cb562c1c24bd09930 Mon Sep 17 00:00:00 2001 From: Matheus Degiovani Date: Mon, 20 May 2024 16:43:37 -0300 Subject: [PATCH] Fix dcrlnd startup and dex testnet address (#3949) Fix dcrlnd startup and dex testnet address --- app/actions/LNActions.js | 2 +- app/constants/dex.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/actions/LNActions.js b/app/actions/LNActions.js index 8968a98742..74a208463a 100644 --- a/app/actions/LNActions.js +++ b/app/actions/LNActions.js @@ -323,7 +323,7 @@ const connectToLNWallet = } catch (error) { // An unimplemented error here probably means dcrlnd was just unlocked // and is currently starting up the services. Wait a bit and try again. - if (error.code !== 12) { + if (error.code !== 12 && error.toString().indexOf("in the process of starting up") == -1) { // 12 === UNIMPLEMENTED. throw error; } diff --git a/app/constants/dex.js b/app/constants/dex.js index 72fe60b52b..5bca1bf2c2 100644 --- a/app/constants/dex.js +++ b/app/constants/dex.js @@ -1,2 +1,2 @@ export const MainNetDexServer = "dex.decred.org:7232"; -export const TestNetDexServer = "dex-test.ssgen.io:7232"; +export const TestNetDexServer = "bison.exchange:17232";