pull/5370/head
yann300 3 years ago committed by joseph izang
parent cde15462a8
commit 7c76e4d186
  1. 2
      libs/remix-ui/debugger-ui/src/lib/vm-debugger/assembly-items.tsx
  2. 2
      libs/remix-ui/debugger-ui/src/reducers/assembly-items.ts

@ -48,7 +48,7 @@ export const AssemblyItems = ({ registerEvent }) => {
}
const indexChanged = (index: number) => {
console.log("index " + index)
console.log('index ' + index)
if (index < 0) return
const codeView = asmItemsRef.current

@ -28,7 +28,7 @@ const reducedOpcode = (opCodes) => {
const top = bottom + length
return {
index: opCodes.index - bottom,
nextIndex:opCodes.nextIndex - bottom,
nextIndex: opCodes.nextIndex - bottom,
display: opCodes.code.slice(bottom, top)
}
}

Loading…
Cancel
Save