From 52bd422757f7c4831a2ac999be210a65f6f05d9f Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 4 May 2017 10:03:49 +0200 Subject: [PATCH 1/3] change page title --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index e882ab0847..0034ab4919 100644 --- a/index.html +++ b/index.html @@ -29,7 +29,7 @@ --> - Remix + Remix - Solidity IDE From ff0e88472e0fd6220143648e6bd4373349e1a9b1 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 4 May 2017 10:03:57 +0200 Subject: [PATCH 2/3] remix doc link --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 0034ab4919..42a46ee154 100644 --- a/index.html +++ b/index.html @@ -63,7 +63,7 @@
  • Contract
  • Debugger
  • Analysis
  • -
  • Docs
  • +
  • Docs
  • Solidity realtime compiler and runtime From f083262b3b6b3ffbd013c2bff913a20c5c70572b Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 4 May 2017 15:25:47 +0200 Subject: [PATCH 3/3] add more precise label when execution fails --- src/universal-dapp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/universal-dapp.js b/src/universal-dapp.js index 922ad8ab4d..57f2bf013a 100644 --- a/src/universal-dapp.js +++ b/src/universal-dapp.js @@ -601,11 +601,11 @@ UniversalDApp.prototype.getCallButton = function (args) { replaceOutput($result, $('').text(err).addClass('error')) // VM only } else if (self.executionContext.isVM() && result.vm.exception === 0 && result.vm.exceptionError) { - replaceOutput($result, $('').text('VM Exception: ' + result.vm.exceptionError).addClass('error')) + replaceOutput($result, $('').text('Exception during execution. (' + result.vm.exceptionError + '). Please debug the transaction for more information.').addClass('error')) $result.append(getDebugTransaction(txResult)) // VM only } else if (self.executionContext.isVM() && result.vm.return === undefined) { - replaceOutput($result, $('').text('Exception during execution.').addClass('error')) + replaceOutput($result, $('').text('Exception during execution. Please debug the transaction for more information.').addClass('error')) $result.append(getDebugTransaction(txResult)) } else if (isConstructor) { replaceOutput($result, getGasUsedOutput(result, result.vm))