|
|
|
@ -1,6 +1,6 @@ |
|
|
|
|
'use strict' |
|
|
|
|
|
|
|
|
|
function solidityLocals (vmtraceIndex, internalTreeCall, stack, memory) { |
|
|
|
|
function solidityLocals (vmtraceIndex, internalTreeCall, stack, memory, storage) { |
|
|
|
|
var scope = internalTreeCall.findScope(vmtraceIndex) |
|
|
|
|
if (!scope) { |
|
|
|
|
var error = { 'message': 'Can\'t display locals. reason: compilation result might not have been provided' } |
|
|
|
@ -11,7 +11,7 @@ function solidityLocals (vmtraceIndex, internalTreeCall, stack, memory) { |
|
|
|
|
for (var local in scope.locals) { |
|
|
|
|
let variable = scope.locals[local] |
|
|
|
|
if (variable.stackDepth < stack.length) { |
|
|
|
|
locals[variable.name] = variable.type.decodeFromStack(variable.stackDepth, stack, memory) |
|
|
|
|
locals[variable.name] = variable.type.decodeFromStack(variable.stackDepth, stack, memory, storage) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return locals |
|
|
|
|