fix confirmCbCallback

pull/3094/head
yann300 7 years ago
parent ef572bba57
commit 61f2fa20a6
  1. 4
      src/app/execution/txRunner.js

@ -145,8 +145,10 @@ TxRunner.prototype.runInNode = function (from, to, data, value, gasLimit, useCal
return
}
confirmCb(network, tx, gasEstimation, callback, (gasPrice) => {
confirmCb(network, tx, gasEstimation, (gasPrice) => {
return executeTx(tx, gasPrice, self._api, callback)
}, (error) => {
callback(error)
})
})
})

Loading…
Cancel
Save