refresh wallet details every 6 minutes

This commit is contained in:
Kadir Sekha 2018-01-29 14:11:29 -04:00
commit c7bcef9888

View file

@ -395,7 +395,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
$scope.$on("$ionicView.afterEnter", function(event, data) {
$scope.updateAll();
refreshAmountSection();
refreshInterval = $interval($scope.onRefresh, 600000);
refreshInterval = $interval($scope.onRefresh, 6 * 60 * 1000);
});
$scope.$on("$ionicView.afterLeave", function(event, data) {