Remove unused parameter

pull/479/head
ioedeveloper 4 years ago
parent 0f0ea7fa6f
commit 062d91838e
  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('solidityStateMessage', this.solidityState.setMessage.bind(this.solidityState))
this.vmDebuggerLogic.event.register('solidityStateUpdating', this.solidityState.setUpdating.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.solidityLocals.event.register('solidityLocalsLoadMore', (cursor) => {
this.vmDebuggerLogic.event.trigger('solidityLocalsLoadMore', [cursor]) this.vmDebuggerLogic.event.trigger('solidityLocalsLoadMore', [cursor])
}) })

Loading…
Cancel
Save