diff --git a/js/controllers/more.js b/js/controllers/more.js index 0ab271512..c7d489889 100644 --- a/js/controllers/more.js +++ b/js/controllers/more.js @@ -1,7 +1,7 @@ 'use strict'; angular.module('copayApp.controllers').controller('MoreController', - function($scope, $rootScope, $location, $filter, $timeout, balanceService, notification, rateService, backupService, identityService, isMobile, isCordova, go) { + function($scope, $rootScope, $location, $filter, $timeout, balanceService, notification, rateService, backupService, identityService, isMobile, isCordova, go, pendingTxsService) { var w = $rootScope.wallet; var max = $rootScope.quotaPerItem; $scope.isSafari = isMobile.Safari(); @@ -87,6 +87,7 @@ angular.module('copayApp.controllers').controller('MoreController', }); notification.success('Success', $filter('translate')('settings successfully updated')); balanceService.update(w, function() { + pendingTxsService.update(); $rootScope.$digest(); }); };