From 9087560344a828e343b654d8051eb5d7017de060 Mon Sep 17 00:00:00 2001 From: Jaco Greeff Date: Thu, 1 Dec 2016 14:08:32 +0100 Subject: [PATCH] gumbles --- js/src/ui/TxList/store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/ui/TxList/store.js b/js/src/ui/TxList/store.js index e2d339aa7..3faac193e 100644 --- a/js/src/ui/TxList/store.js +++ b/js/src/ui/TxList/store.js @@ -93,7 +93,7 @@ export default class Store { Promise .all(txhashes.map((txhash) => this._api.eth.getTransactionByHash(txhash))) .then((_transactions) => { - const transactions = _transactions.filter((tx) => tx) || []; + const transactions = _transactions.filter((tx) => tx); this.addTransactions( transactions.reduce((transactions, tx, index) => {