update for new linter rules

pull/5370/head
Iuri Matias 5 years ago committed by aniket-engg
parent d119a75231
commit 7b3a88073d
  1. 6
      libs/remix-debug/src/solidity-decoder/internalCallTree.js

@ -242,7 +242,8 @@ function includeVariableDeclaration (tree, step, sourceLocation, scopeId, newLoc
}
}
})
} catch (_error) {
} catch (error) {
console.log(error)
}
}
// we check here if we are at the beginning inside a new function.
@ -277,7 +278,8 @@ function includeVariableDeclaration (tree, step, sourceLocation, scopeId, newLoc
// output params
if (outputs) addParams(outputs, tree, scopeId, states, contractName, previousSourceLocation, stack.length, 0, 1)
}
} catch (_error) {
} catch (error) {
console.log(error)
}
})

Loading…
Cancel
Save