Merge pull request #1632 from isocolsky/fixes

Fixes
This commit is contained in:
Matias Alejo Garcia 2014-10-31 11:37:37 -03:00
commit 7b5e012f62
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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();