diff --git a/src/js/controllers/walletDetails.js b/src/js/controllers/walletDetails.js index 65b15f0b5..a785b1f8f 100644 --- a/src/js/controllers/walletDetails.js +++ b/src/js/controllers/walletDetails.js @@ -161,23 +161,12 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun var updateTxHistory = function(cb) { if (!cb) cb = function() {}; - $scope.updateTxHistoryError = false; $scope.updatingTxHistoryProgress = 0; - var progressFn = function(txs, newTxs) { - $scope.updatingTxHistoryProgress = newTxs; - $scope.completeTxHistory = txs; - $scope.showHistory(); - $timeout(function() { - $scope.$apply(); - }); - }; - feeService.getFeeLevels($scope.wallet.coin, function(err, levels) { walletService.getTxHistory($scope.wallet, { - progressFn: progressFn, - feeLevels: levels, + feeLevels: levels }, function(err, txHistory) { $scope.updatingTxHistory = false; if (err) {