diff --git a/src/js/controllers/index.js b/src/js/controllers/index.js index f91e6940c..7f771febd 100644 --- a/src/js/controllers/index.js +++ b/src/js/controllers/index.js @@ -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(); }); }); -}); +}); \ No newline at end of file