fix time message in proposal transaction

This commit is contained in:
Javier 2015-09-25 13:25:37 -03:00
parent ae6622d911
commit 7d5ce21a35
1 changed files with 7 additions and 1 deletions

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