fis standard

pull/7/head
yann300 7 years ago
parent b56cac146a
commit 8d98d382b9
  1. 1
      remix-lib/src/execution/txListener.js

@ -201,6 +201,7 @@ class TxListener {
_resolve (transactions, callback) { _resolve (transactions, callback) {
async.each(transactions, (tx, cb) => { async.each(transactions, (tx, cb) => {
executionContext.web3().eth.getTransactionReceipt(tx.hash, (error, receipt) => { executionContext.web3().eth.getTransactionReceipt(tx.hash, (error, receipt) => {
if (error) return cb(error)
this._resolveTx(receipt, (error, resolvedData) => { this._resolveTx(receipt, (error, resolvedData) => {
if (error) cb(error) if (error) cb(error)
if (resolvedData) { if (resolvedData) {

Loading…
Cancel
Save