diff --git a/src/js/controllers/walletDetails.js b/src/js/controllers/walletDetails.js index 6d508d423..382c870e0 100644 --- a/src/js/controllers/walletDetails.js +++ b/src/js/controllers/walletDetails.js @@ -196,7 +196,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun } $scope.isUnconfirmed = function(tx) { - return !tx.time && (!tx.confirmations || tx.confirmations === 0); + return !tx.confirmations || tx.confirmations === 0; }; $scope.showMore = function() { diff --git a/www/views/includes/txp.html b/www/views/includes/txp.html index 048680023..6576549bf 100644 --- a/www/views/includes/txp.html +++ b/www/views/includes/txp.html @@ -48,30 +48,19 @@ -
-
- Confirming -
-
- - + (possible double spend) - {{tx.amountStr}} + – {{tx.amountStr}}
- -
diff --git a/www/views/walletDetails.html b/www/views/walletDetails.html index 5e2967e58..6dfe8d9de 100644 --- a/www/views/walletDetails.html +++ b/www/views/walletDetails.html @@ -104,7 +104,7 @@
-