Skip to content

Commit

Permalink
Fix dcrlnd startup and dex testnet address (#3949)
Browse files Browse the repository at this point in the history
Fix dcrlnd startup and dex testnet address
  • Loading branch information
matheusd authored May 20, 2024
1 parent f666aa1 commit 11e55dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/actions/LNActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion app/constants/dex.js
Original file line number Diff line number Diff line change
@@ -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";

0 comments on commit 11e55dd

Please sign in to comment.