call netStart() when opening wallet

This commit is contained in:
Ivan Socolsky 2014-10-14 12:45:32 -03:00 committed by Matias Alejo Garcia
commit 279ab41b6c

View file

@ -479,6 +479,7 @@ Identity.prototype.openWallet = function(walletId, cb) {
w.store(function(err) { w.store(function(err) {
self.profile.setLastOpenedTs(walletId, function() { self.profile.setLastOpenedTs(walletId, function() {
w.netStart();
return cb(err, w); return cb(err, w);
}); });
}); });