fix emit call

This commit is contained in:
Javier 2015-10-30 12:55:41 -03:00
commit f65e971cf4
2 changed files with 5 additions and 8 deletions

View file

@ -1006,13 +1006,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
// UX event handlers
$rootScope.$on('Local/ClearHistory', function(event, walletId) {
storageService.removeTxHistory(walletId, function(err) {
if (err) root.showErrorPopup(err);
$log.debug('The wallet transaction history has been deleted');
self.txHistory = [];
self.updateHistory();
});
$log.debug('The wallet transaction history has been deleted');
self.txHistory = [];
self.updateHistory();
});
$rootScope.$on('Local/ColorUpdated', function(event) {