Merge pull request #1744 from eordano/performance/proposals

Fixes performance issue with txproposals
This commit is contained in:
Matias Alejo Garcia 2014-11-10 16:20:39 -03:00
commit 53e0065b74
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) {