Commit 9cc039ec authored by aniket-engg's avatar aniket-engg Committed by Aniket

linting fix

parent 48662e06
...@@ -181,7 +181,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => { ...@@ -181,7 +181,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
return return
} }
const web3 = state.opt.debugWithLocalNode ? await debuggerModule.web3() : ( optWeb3 ? optWeb3 : await debuggerModule.getDebugWeb3()) const web3 = state.opt.debugWithLocalNode ? await debuggerModule.web3() : (optWeb3 || await debuggerModule.getDebugWeb3())
try { try {
const networkId = await web3.eth.net.getId() const networkId = await web3.eth.net.getId()
_paq.push(['trackEvent', 'debugger', 'startDebugging', networkId]) _paq.push(['trackEvent', 'debugger', 'startDebugging', networkId])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment