From 73286342d472703a379cb758129d340fb09837ee Mon Sep 17 00:00:00 2001 From: Alex Yocom-Piatt Date: Tue, 28 May 2024 15:58:00 -0400 Subject: [PATCH] prettify --- app/actions/LNActions.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/actions/LNActions.js b/app/actions/LNActions.js index 74a208463a..1fd1837f13 100644 --- a/app/actions/LNActions.js +++ b/app/actions/LNActions.js @@ -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; }