Merge pull request #465 from ethereum/getter-bug

Fixed Uncaught Exception
pull/5370/head
yann300 4 years ago committed by GitHub
commit e02b7667fb
  1. 2
      libs/remix-lib/src/execution/txRunner.js

@ -258,7 +258,7 @@ function run (self, tx, stamp, confirmationCb, gasEstimationForceSend, promptCb,
self.pendingTxs[stamp] = tx
self.execute(tx, confirmationCb, gasEstimationForceSend, promptCb, function(error, result) {
delete self.pendingTxs[stamp]
callback(error, result)
if (callback && typeof callback === 'function') callback(error, result)
if (self.queusTxs.length) {
const next = self.queusTxs.pop()
run(self, next.tx, next.stamp, next.callback)

Loading…
Cancel
Save