add delete history button in advanced->wallet info

This commit is contained in:
Javier 2015-10-29 12:10:31 -03:00
commit 402a406827
2 changed files with 20 additions and 7 deletions

View file

@ -1,12 +1,12 @@
'use strict';
angular.module('copayApp.controllers').controller('preferencesInformation',
function($scope, $log, $timeout, isMobile, gettextCatalog, lodash, profileService) {
function($scope, $log, $timeout, isMobile, gettextCatalog, lodash, profileService, storageService) {
var base = 'xpub';
var fc = profileService.focusedClient;
var c = fc.credentials;
this.init = function() {
var fc = profileService.focusedClient;
var c = fc.credentials;
var basePath = profileService.getUtils().getBaseAddressDerivationPath(c.derivationStrategy, c.network, 0);
$scope.walletName = c.walletName;
@ -28,8 +28,8 @@ angular.module('copayApp.controllers').controller('preferencesInformation',
return;
};
var last10 = [],
i = 0,
e = addrs.pop();
i = 0,
e = addrs.pop();
while (i++ < 10 && e) {
e.path = base + e.path.substring(1);
last10.push(e);
@ -45,7 +45,6 @@ angular.module('copayApp.controllers').controller('preferencesInformation',
this.sendAddrs = function() {
var self = this;
var fc = profileService.focusedClient;
if (isMobile.Android() || isMobile.Windows()) {
window.ignoreMobilePause = true;
@ -94,4 +93,10 @@ angular.module('copayApp.controllers').controller('preferencesInformation',
});
}, 100);
};
this.clearTransactionHistory = function() {
storageService.removeTxHistory(c.walletId, function() {
$log.info('The wallet transaction history has been deleted');
});
}
});