Fix update status
This commit is contained in:
parent
cf5290d3e5
commit
8d5fc83d40
1 changed files with 2 additions and 1 deletions
|
|
@ -265,7 +265,8 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
|
||||||
function _getStatus(initStatusHash, tries, cb) {
|
function _getStatus(initStatusHash, tries, cb) {
|
||||||
if (isStatusCached() && !opts.force) {
|
if (isStatusCached() && !opts.force) {
|
||||||
$log.debug('Wallet status cache hit:' + wallet.id);
|
$log.debug('Wallet status cache hit:' + wallet.id);
|
||||||
|
cacheStatus(wallet.cachedStatus);
|
||||||
|
processPendingTxps(wallet.cachedStatus);
|
||||||
return cb(null, wallet.cachedStatus);
|
return cb(null, wallet.cachedStatus);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue