Skip to content

Commit

Permalink
prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlyp committed May 28, 2024
1 parent e99a191 commit 7328634
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/actions/LNActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,10 @@ 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 && error.toString().indexOf("in the process of starting up") == -1) {
if (
error.code !== 12 &&
error.toString().indexOf("in the process of starting up") == -1
) {
// 12 === UNIMPLEMENTED.
throw error;
}
Expand Down

0 comments on commit 7328634

Please sign in to comment.