Merge pull request #3698 from ethcore/jg-null-transaction
Filter null transactions for display (not available on node)
This commit is contained in:
commit
21a76c22fc
@ -92,7 +92,9 @@ export default class Store {
|
||||
|
||||
Promise
|
||||
.all(txhashes.map((txhash) => this._api.eth.getTransactionByHash(txhash)))
|
||||
.then((transactions) => {
|
||||
.then((_transactions) => {
|
||||
const transactions = _transactions.filter((tx) => tx);
|
||||
|
||||
this.addTransactions(
|
||||
transactions.reduce((transactions, tx, index) => {
|
||||
transactions[txhashes[index]] = tx;
|
||||
|
Loading…
Reference in New Issue
Block a user