Skip to content

Commit

Permalink
Bump to v2.0.1 (#3955)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlyp authored May 28, 2024
1 parent 11e55dd commit e7cd0c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
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
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit e7cd0c6

Please sign in to comment.