linting fix

pull/5370/head
aniket-engg 5 years ago committed by Aniket
parent a8e203eb21
commit 7662e42e2a
  1. 2
      remix-lib/src/execution/txHelper.js

@ -15,7 +15,7 @@ module.exports = {
if (funABI.inputs && funABI.inputs.length) { if (funABI.inputs && funABI.inputs.length) {
for (var i = 0; i < funABI.inputs.length; i++) { for (var i = 0; i < funABI.inputs.length; i++) {
var type = funABI.inputs[i].type 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` // fine as abiCoder assume anything in quotes as `true`
if (type === 'bool' && args[i] === 'false') { if (type === 'bool' && args[i] === 'false') {
args[i] = false args[i] = false

Loading…
Cancel
Save