handle error from runTx

pull/3094/head
Iuri Matias 7 years ago committed by yann300
parent aa1f74880e
commit 65adc693b9
  1. 3
      remix-lib/src/execution/txRunner.js

@ -112,6 +112,9 @@ TxRunner.prototype.runInVm = function (from, to, data, value, gasLimit, useCall,
}
executionContext.vm().runTx({block: block, tx: tx, skipBalance: true, skipNonce: true}, function (err, result) {
if (err) {
return callback(err);
}
if (useCall) {
executionContext.vm().stateManager.revert(function () {})
}

Loading…
Cancel
Save