fix memory formatting

pull/3061/head
yann300 2 years ago committed by Aniket
parent 32b1eb1573
commit f820f1e8d9
  1. 2
      libs/remix-debug/src/debugger/VmDebugger.ts

@ -114,7 +114,7 @@ export class VmDebuggerLogic {
try { try {
const memory = this._traceManager.getMemoryAt(index) const memory = this._traceManager.getMemoryAt(index)
if (this.stepManager.currentStepIndex === index) { if (this.stepManager.currentStepIndex === index) {
this.event.trigger('traceManagerMemoryUpdate', [ui.formatMemory(memory, 16)]) this.event.trigger('traceManagerMemoryUpdate', [ui.formatMemory(memory, 32)])
} }
} catch (error) { } catch (error) {
this.event.trigger('traceManagerMemoryUpdate', [{}]) this.event.trigger('traceManagerMemoryUpdate', [{}])

Loading…
Cancel
Save