diff --git a/js/models/Wallet.js b/js/models/Wallet.js index 3e33f4ec4..8c63878f6 100644 --- a/js/models/Wallet.js +++ b/js/models/Wallet.js @@ -2853,7 +2853,6 @@ Wallet.prototype.getTransactionHistory = function(cb) { var history = _.map(txs, function(tx) { decorateTx(tx); - console.log(tx); return tx; }); return cb(null, history); diff --git a/js/services/controllerUtils.js b/js/services/controllerUtils.js index e80df51aa..23804b103 100644 --- a/js/services/controllerUtils.js +++ b/js/services/controllerUtils.js @@ -70,7 +70,8 @@ angular.module('copayApp.services') root.updateTxsAndBalance = _.debounce(function(w) { root.updateTxs({ - wallet: w + wallet: w, + pending: true, }); root.updateBalance(w, function() { $rootScope.$digest();