From ff20543c598ac1534adc531e030373b57e88c891 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Thu, 19 May 2016 19:00:14 -0700 Subject: Render failed tx in tx list --- ui/app/account-detail.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'ui/app/account-detail.js') diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index 489392473..c708580c4 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -179,8 +179,6 @@ AccountDetailScreen.prototype.transactionList = function() { .filter(tx => tx.txParams.from === state.address) // only transactions that are on the current network .filter(tx => tx.txParams.metamaskNetworkId === state.networkVersion) - // only transactions that have a hash - .filter(tx => tx.hash) // sort by recency .sort((a, b) => b.time - a.time) -- cgit v1.2.3