Skip to content

Commit e7cd0c6

Browse files
authored
Bump to v2.0.1 (#3955)
1 parent 11e55dd commit e7cd0c6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

app/actions/LNActions.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,10 @@ const connectToLNWallet =
323323
} catch (error) {
324324
// An unimplemented error here probably means dcrlnd was just unlocked
325325
// and is currently starting up the services. Wait a bit and try again.
326-
if (error.code !== 12 && error.toString().indexOf("in the process of starting up") == -1) {
326+
if (
327+
error.code !== 12 &&
328+
error.toString().indexOf("in the process of starting up") == -1
329+
) {
327330
// 12 === UNIMPLEMENTED.
328331
throw error;
329332
}

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "decrediton",
33
"productName": "Decrediton",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"description": "Graphical wallet for Decred supporting staking, privacy, and decentralized exchange.",
66
"main": "./main.js",
77
"author": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "decrediton",
33
"productName": "Decrediton",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"description": "Decrediton based on React, React Router, Webpack, React Hot Loader for rapid application development",
66
"main": "main.js",
77
"scripts": {

0 commit comments

Comments
 (0)