From 6a6324e2619a57096424b710536822c55dfca6b8 Mon Sep 17 00:00:00 2001 From: David Disu Date: Mon, 23 May 2022 12:29:13 +0100 Subject: [PATCH] Fixed linting error --- libs/remix-lib/src/execution/txFormat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-lib/src/execution/txFormat.ts b/libs/remix-lib/src/execution/txFormat.ts index 4b83fd2e21..a320164896 100644 --- a/libs/remix-lib/src/execution/txFormat.ts +++ b/libs/remix-lib/src/execution/txFormat.ts @@ -410,7 +410,7 @@ export function decodeResponse (response, fnabi) { } export function parseFunctionParams (params) { - let args = [] + const args = [] // Check if parameter string starts with array or string let startIndex = isArrayOrStringStart(params, 0) ? -1 : 0 for (let i = 0; i < params.length; i++) {