From 35b7dd3ec8d6437e8e7e375f8bc8c8cd6b2449fd Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 23 Dec 2020 15:08:12 +0100 Subject: [PATCH] remove log --- libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx b/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx index eb46317e79..92611abb7b 100644 --- a/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx +++ b/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx @@ -151,8 +151,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => { offsetToLineColumnConverter: debuggerModule.offsetToLineColumnConverter, compilationResult: async (address) => { try { - const ret = await debuggerModule.fetchContractAndCompile(address, currentReceipt) - console.log('ok', ret) + const ret = await debuggerModule.fetchContractAndCompile(address, currentReceipt) return ret } catch (e) { console.error(e)