do not import address book if wallet already in Copay

This commit is contained in:
Gabriel Bazán 2015-11-11 11:25:03 -03:00
parent 3ce8806286
commit f3251a5057
1 changed files with 6 additions and 3 deletions

View File

@ -408,9 +408,12 @@ angular.module('copayApp.services')
var addressBook = str.addressBook || {};
var historyCache = str.historyCache ||  [];
root.setMetaData(walletClient, addressBook, historyCache, function(err) {
if (err) console.log(err);
root._addWalletClient(walletClient, opts, cb);
root._addWalletClient(walletClient, opts, function(err, walletId) {
if (err) return cb(err);
root.setMetaData(walletClient, addressBook, historyCache, function(error) {
if (error) console.log(error);
return cb(err, walletId);
});
});
};