Skip to content

Commit

Permalink
new release v1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
buildog committed Nov 8, 2017
1 parent 1c767e9 commit ffcef7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -9302,7 +9302,7 @@ module.exports =
}).catch(function () {
console.log('login endpoint not yet ready');
});
}, 3000);
}, 1000);
});
}
}, {
Expand Down Expand Up @@ -9425,10 +9425,11 @@ module.exports =
console.log('logged in!');
self.userpass = userpass;
self.mypubkey = mypubkey;
self.emit('updateUserInfo', { userpass: userpass, mypubkey: mypubkey, passphrase: passphrase });

self.getCoins(false).then(function (coinsList) {
// coinsList may return an object instead of an array if it's the first call which return the userpass.
self.emit('coinsList', coinsList.coins || coinsList);
self.emit('updateUserInfo', { userpass: userpass, mypubkey: mypubkey, passphrase: passphrase });
});

resolve('logged in');
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": "barterDEX",
"author": "buildog",
"version": "1.3.4",
"version": "1.3.5",
"description": "barterDEX Electron App",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit ffcef7f

Please sign in to comment.