This commit is contained in:
Gustavo Maximiliano Cortez 2015-09-07 17:43:55 -03:00
commit 40113052f4
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
6 changed files with 139 additions and 79 deletions

View file

@ -393,6 +393,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.setOngoingProcess('updatingPendingTxps', true);
$log.debug('Updating PendingTxps');
fc.getTxProposals({}, function(err, txps) {
console.log('[index.js:395]',txps); //TODO
self.setOngoingProcess('updatingPendingTxps', false);
if (err) {
self.handleError(err);
@ -950,6 +951,10 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.updateGlidera(accessToken, permissions);
});
$rootScope.$on('Local/GlideraError', function(event) {
self.debouncedUpdate();
});
$rootScope.$on('Local/UnitSettingUpdated', function(event) {
self.updateAll();
self.updateTxHistory();