Filter null transactions (not available on node)

This commit is contained in:
Jaco Greeff 2016-12-01 13:36:23 +01:00
parent 0f987a2206
commit d5373e26b8
1 changed files with 3 additions and 1 deletions

View File

@ -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;