We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978c0d4 commit f6bb87aCopy full SHA for f6bb87a
src/test_suite/syscall/codec_utils.py
@@ -25,6 +25,11 @@ def encode_output(effects: vm_pb.SyscallEffects):
25
effects.stack = encode_hex_compact(effects.stack)
26
effects.rodata = encode_hex_compact(effects.rodata)
27
28
+ for i in range(len(effects.input_data_regions)):
29
+ effects.input_data_regions[i].content = encode_hex_compact(
30
+ effects.input_data_regions[i].content
31
+ )
32
+
33
34
def decode_input(input: vm_pb.SyscallContext):
35
instr_ctx = invoke_pb.InstrContext()
0 commit comments