Skip to content

Commit ef09d85

Browse files
iurimatiasAniket-Engg
authored andcommitted
update for new linter rules
1 parent b457d7d commit ef09d85

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libs/remix-debug/src/solidity-decoder/internalCallTree.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ function includeVariableDeclaration (tree, step, sourceLocation, scopeId, newLoc
242242
}
243243
}
244244
})
245-
} catch (_error) {
245+
} catch (error) {
246+
console.log(error)
246247
}
247248
}
248249
// we check here if we are at the beginning inside a new function.
@@ -277,7 +278,8 @@ function includeVariableDeclaration (tree, step, sourceLocation, scopeId, newLoc
277278
// output params
278279
if (outputs) addParams(outputs, tree, scopeId, states, contractName, previousSourceLocation, stack.length, 0, 1)
279280
}
280-
} catch (_error) {
281+
} catch (error) {
282+
console.log(error)
281283
}
282284
})
283285

0 commit comments

Comments
 (0)