From 42eb5261b06da56d5fdd96208299b5e847dd8ea7 Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 16 Jan 2018 14:02:15 +0100 Subject: [PATCH] standard --- src/app/execution/txRunner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/execution/txRunner.js b/src/app/execution/txRunner.js index 8b0542dd2f..88575891a0 100644 --- a/src/app/execution/txRunner.js +++ b/src/app/execution/txRunner.js @@ -94,7 +94,7 @@ TxRunner.prototype.execute = function (args, callback) { // NOTE: estimateGas very likely will return a large limit if execution of the code failed // we want to be able to run the code in order to debug and find the cause for the failure - var warnEstimation = ' An important gas estimation might also be the sign of a problem in the contract code. Please check loops and be sure you did not sent value to a non payable function (that\'s also the reason of strong gas estimation).' + var warnEstimation = " An important gas estimation might also be the sign of a problem in the contract code. Please check loops and be sure you did not sent value to a non payable function (that's also the reason of strong gas estimation)." if (gasEstimation > gasLimit) { return callback('Gas required exceeds limit: ' + gasLimit + '. ' + warnEstimation) }