wallet transactions now refresh every 10 seconds and don't cache

This commit is contained in:
Kadir Sekha 2018-02-06 17:50:25 -04:00
commit ca7c25d01e
3 changed files with 10 additions and 5 deletions

View file

@ -668,7 +668,8 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
return wallet.completeHistory && wallet.completeHistory.isValid;
};
if (isHistoryCached() && !opts.force) return cb(null, wallet.completeHistory);
// disable caching
//if (isHistoryCached() && !opts.force) return cb(null, wallet.completeHistory);
$log.debug('Updating Transaction History');