Remove unused parameter

pull/5370/head
ioedeveloper 4 years ago
parent d2423e632a
commit fc9b028255
  1. 2
      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])
})

Loading…
Cancel
Save