From d4175eca081093bf334308826dc8eb58558a991e Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 24 Nov 2022 13:14:46 +0100 Subject: [PATCH] fix linting --- libs/remix-debug/src/solidity-decoder/internalCallTree.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-debug/src/solidity-decoder/internalCallTree.ts b/libs/remix-debug/src/solidity-decoder/internalCallTree.ts index d52b6dc3b0..0227051833 100644 --- a/libs/remix-debug/src/solidity-decoder/internalCallTree.ts +++ b/libs/remix-debug/src/solidity-decoder/internalCallTree.ts @@ -285,7 +285,7 @@ async function buildTree (tree, step, scopeId, isCreation, functionDefinition?, const contractObj = await tree.solidityProxy.contractObjectAtAddress(address) const generatedSources = getGeneratedSources(tree, scopeId, contractObj) - let functionDefinition = resolveFunctionDefinition(tree, sourceLocation, generatedSources) + const functionDefinition = resolveFunctionDefinition(tree, sourceLocation, generatedSources) const isInternalTxInstrn = isCallInstruction(stepDetail) const isCreateInstrn = isCreateInstruction(stepDetail)