Fixes performance issue with txproposals

This commit is contained in:
Esteban Ordano 2014-11-07 15:30:00 -03:00
commit df12c5964c
2 changed files with 17 additions and 19 deletions

View file

@ -62,12 +62,12 @@ angular.module('copayApp.services')
};
root.updateTxsAndBalance = _.debounce(function(w) {
root.updateTxsAndBalance = function(w) {
root.updateTxs();
root.updateBalance(w, function() {
$rootScope.$digest();
});
}, 3000);
};
root.installWalletHandlers = function($scope, w) {