fix wallet import error message

This commit is contained in:
Yemel Jardi 2014-06-19 16:07:51 -03:00
parent 50823ebd1c
commit 06c1640d99
1 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,8 @@ WalletFactory.prototype.fromEncryptedObj = function(base64, password) {
WalletFactory.prototype.import = function(base64, password, cb) {
var self = this;
var w = self.fromEncryptedObj(base64, password);
if (!w) return cb(new Error('wrong password'));
w.updateIndexes(function(err) {
if (err) return cb(err);
self.log('Indexes updated');