From e7cd0c6ebf0077454582cb7a6a744dbd059bd226 Mon Sep 17 00:00:00 2001 From: Alex Yocom-Piatt Date: Tue, 28 May 2024 16:59:22 -0400 Subject: [PATCH] Bump to v2.0.1 (#3955) --- app/actions/LNActions.js | 5 ++++- app/package.json | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) 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; } diff --git a/app/package.json b/app/package.json index 17d0ee8fd4..ab386aa52e 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "decrediton", "productName": "Decrediton", - "version": "2.0.0", + "version": "2.0.1", "description": "Graphical wallet for Decred supporting staking, privacy, and decentralized exchange.", "main": "./main.js", "author": { diff --git a/package.json b/package.json index e3cdf5121c..74bb4c4144 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "decrediton", "productName": "Decrediton", - "version": "2.0.0", + "version": "2.0.1", "description": "Decrediton based on React, React Router, Webpack, React Hot Loader for rapid application development", "main": "main.js", "scripts": {