Merge pull request #3234 from javierbitpay/fix/time-history

fix time message in proposal transaction
This commit is contained in:
Matias Alejo Garcia 2015-09-25 23:40:11 -03:00
commit 6276de1c09

View file

@ -484,10 +484,16 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.setPendingTxps = function(txps) {
self.pendingTxProposalsCountForUs = 0;
var now = Math.floor(Date.now() / 1000);
lodash.each(txps, function(tx) {
tx = txFormatService.processTx(tx);
// no future transactions...
if (tx.createdOn > now)
tx.createdOn = now;
var action = lodash.find(tx.actions, {
copayerId: self.copayerId
});
@ -1158,4 +1164,4 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.setFocusedWallet();
});
});
});
});