From 8d98d382b974fdbdc61b4303682575db9516545a Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 11 Jun 2018 17:18:34 +0200 Subject: [PATCH] fis standard --- remix-lib/src/execution/txListener.js | 1 + 1 file changed, 1 insertion(+) diff --git a/remix-lib/src/execution/txListener.js b/remix-lib/src/execution/txListener.js index b596081d66..a36bbab59d 100644 --- a/remix-lib/src/execution/txListener.js +++ b/remix-lib/src/execution/txListener.js @@ -201,6 +201,7 @@ class TxListener { _resolve (transactions, callback) { async.each(transactions, (tx, cb) => { executionContext.web3().eth.getTransactionReceipt(tx.hash, (error, receipt) => { + if (error) return cb(error) this._resolveTx(receipt, (error, resolvedData) => { if (error) cb(error) if (resolvedData) {