From b9924c9f7faa8e1b35e36488c74c7ce0fa693c7f Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Tue, 24 Feb 2015 10:45:07 -0300 Subject: [PATCH] Update tx proposals after change the unit --- js/controllers/more.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); }); };