Merge pull request #128 from lastperson/patch-1

Fix runTx to work with real eth nodes
pull/1/head
chriseth 9 years ago
commit e42c3e748f
  1. 2
      assets/js/universal-dapp.js

@ -290,7 +290,7 @@ UniversalDApp.prototype.getCallButton = function(args) {
self.runTx(data, args, function(err, result) { self.runTx(data, args, function(err, result) {
if (err) { if (err) {
replaceOutput($result, $('<span/>').text(err).addClass('error')); replaceOutput($result, $('<span/>').text(err).addClass('error'));
} else if (result.vm.exception && result.vm.exceptionError) { } else if (self.options.vm && result.vm.exception && result.vm.exceptionError) {
replaceOutput($result, $('<span/>').text('VM Exception: ' + result.vm.exceptionError).addClass('error')); replaceOutput($result, $('<span/>').text('VM Exception: ' + result.vm.exceptionError).addClass('error'));
} else if (self.options.vm && result.vm.return === undefined) { } else if (self.options.vm && result.vm.return === undefined) {
replaceOutput($result, $('<span/>').text('Exception during execution.').addClass('error')); replaceOutput($result, $('<span/>').text('Exception during execution.').addClass('error'));

Loading…
Cancel
Save