Commit 8d98d382 authored by yann300's avatar yann300

fis standard

parent b56cac14
...@@ -201,6 +201,7 @@ class TxListener { ...@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment