commit
7b5e012f62
2 changed files with 2 additions and 2 deletions
|
|
@ -2853,7 +2853,6 @@ Wallet.prototype.getTransactionHistory = function(cb) {
|
||||||
|
|
||||||
var history = _.map(txs, function(tx) {
|
var history = _.map(txs, function(tx) {
|
||||||
decorateTx(tx);
|
decorateTx(tx);
|
||||||
console.log(tx);
|
|
||||||
return tx;
|
return tx;
|
||||||
});
|
});
|
||||||
return cb(null, history);
|
return cb(null, history);
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,8 @@ angular.module('copayApp.services')
|
||||||
|
|
||||||
root.updateTxsAndBalance = _.debounce(function(w) {
|
root.updateTxsAndBalance = _.debounce(function(w) {
|
||||||
root.updateTxs({
|
root.updateTxs({
|
||||||
wallet: w
|
wallet: w,
|
||||||
|
pending: true,
|
||||||
});
|
});
|
||||||
root.updateBalance(w, function() {
|
root.updateBalance(w, function() {
|
||||||
$rootScope.$digest();
|
$rootScope.$digest();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue