Fixed updating of confirmations of cached transactions. Cache now properly cleared on first fetch from Wallet Details screen.

This commit is contained in:
Brendon Duncan 2018-09-21 03:56:51 -07:00
commit ea51e035ab
2 changed files with 37 additions and 17 deletions

View file

@ -400,8 +400,8 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
var refreshInterval;
$scope.$on("$ionicView.afterEnter", function(event, data) {
$scope.updateAll();
$scope.$on("$ionicView.afterEnter", function onAfterEnter(event, data) {
$scope.updateAll(true, true);
// refreshAmountSection();
refreshInterval = $interval($scope.onRefresh, 10 * 1000);
$timeout(function() {