history section

This commit is contained in:
bechi 2014-10-30 16:46:39 -03:00
commit 24ea10c36c
6 changed files with 47 additions and 38 deletions

View file

@ -62,6 +62,9 @@ angular.module('copayApp.controllers').controller('TransactionsController',
return;
}
_.each(res, function (r) {
r.ts = r.minedTs || r.sentTs;
});
$scope.blockchain_txs = w.cached_txs = res;
$scope.loading = false;
setTimeout(function() {

View file

@ -2854,7 +2854,7 @@ Wallet.prototype.getTransactionHistory = function(cb) {
tx.amountSat = Math.abs(amount);
tx.amount = tx.amountSat * satToUnit;
tx.sentTs = proposal ? proposal.sentTs : undefined;
tx.minedTs = tx.time * 1000;
tx.minedTs = !_.isNaN(tx.time) ? tx.time * 1000 : undefined;
};
if (addresses.length > 0) {
@ -2864,6 +2864,7 @@ Wallet.prototype.getTransactionHistory = function(cb) {
var history = _.map(txs, function(tx) {
decorateTx(tx);
console.log(tx);
return tx;
});
return cb(null, history);