From 062d91838ec887547cb368edf355d911d51c2bfe Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Tue, 13 Oct 2020 10:48:10 +0100 Subject: [PATCH] Remove unused parameter --- apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js b/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js index 379398d772..5df574bab0 100644 --- a/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js +++ b/apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js @@ -82,7 +82,7 @@ function VmDebugger (vmDebuggerLogic) { this.vmDebuggerLogic.event.register('solidityStateMessage', this.solidityState.setMessage.bind(this.solidityState)) this.vmDebuggerLogic.event.register('solidityStateUpdating', this.solidityState.setUpdating.bind(this.solidityState)) - this.solidityLocals = new SolidityLocals(vmDebuggerLogic) + this.solidityLocals = new SolidityLocals() this.solidityLocals.event.register('solidityLocalsLoadMore', (cursor) => { this.vmDebuggerLogic.event.trigger('solidityLocalsLoadMore', [cursor]) })