From 57f715f939d1709d35fc6d2e6a1db4d95805be40 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Fri, 17 Jul 2020 18:47:59 -0400 Subject: [PATCH] refacto getMemoryAt --- libs/remix-debug/src/solidity-decoder/internalCallTree.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libs/remix-debug/src/solidity-decoder/internalCallTree.js b/libs/remix-debug/src/solidity-decoder/internalCallTree.js index f480340b53..b9c6872b45 100644 --- a/libs/remix-debug/src/solidity-decoder/internalCallTree.js +++ b/libs/remix-debug/src/solidity-decoder/internalCallTree.js @@ -270,12 +270,6 @@ function includeVariableDeclaration (tree, step, sourceLocation, scopeId, newLoc break } } - // input params - if (inputs) { - functionDefinitionAndInputs.inputs = addParams(inputs, tree, scopeId, states, contractName, previousSourceLocation, stack.length, inputs.children.length, -1) - } - // output params - if (outputs) addParams(outputs, tree, scopeId, states, contractName, previousSourceLocation, stack.length, 0, 1) } // input params if (inputs) {