Fix update status

This commit is contained in:
Javier 2016-09-23 16:09:51 -03:00
commit 8d5fc83d40

View file

@ -265,7 +265,8 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
function _getStatus(initStatusHash, tries, cb) {
if (isStatusCached() && !opts.force) {
$log.debug('Wallet status cache hit:' + wallet.id);
cacheStatus(wallet.cachedStatus);
processPendingTxps(wallet.cachedStatus);
return cb(null, wallet.cachedStatus);
};