From 7662e42e2a93e088eeaa065b58f5743cb347225b Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Tue, 10 Dec 2019 18:03:20 +0530 Subject: [PATCH] linting fix --- remix-lib/src/execution/txHelper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-lib/src/execution/txHelper.js b/remix-lib/src/execution/txHelper.js index 176bf22d28..2315301c23 100644 --- a/remix-lib/src/execution/txHelper.js +++ b/remix-lib/src/execution/txHelper.js @@ -15,7 +15,7 @@ module.exports = { if (funABI.inputs && funABI.inputs.length) { for (var i = 0; i < funABI.inputs.length; i++) { var type = funABI.inputs[i].type - // "false" will be converting to `false` and "true" will be working + // "false" will be converting to `false` and "true" will be working // fine as abiCoder assume anything in quotes as `true` if (type === 'bool' && args[i] === 'false') { args[i] = false