refresh wallet details every 6 minutes
This commit is contained in:
parent
e357a7006a
commit
c7bcef9888
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue