fix import / logs

This commit is contained in:
Matias Alejo Garcia 2014-11-30 04:42:39 -03:00
commit 49205a76a0
6 changed files with 25 additions and 59 deletions

View file

@ -310,10 +310,10 @@ angular.module('copayApp.services')
networkName: config.networkName,
walletDefaults: config.wallet,
passphraseConfig: config.passphraseConfig,
}, function(err, iden) {
}, function(err, iden, walletObjs) {
if (err) return cb(err);
root.bind(iden);
iden.openWallets();
iden.importMultipleWalletsFromObj(walletObjs);
return cb();
});
};