Skip to content

Commit

Permalink
Fix prev commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Jan 17, 2024
1 parent 5bcf06a commit b429d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/src/vm/runners/cairo_pie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ mod serde_impl {

for value in values {
seq_serializer
.serialize_element(&format!("[{}, {}]", value.segment_index, value.offset))?;
.serialize_element(&[value.segment_index, value.offset as isize])?;
}

seq_serializer.end()
Expand Down

0 comments on commit b429d33

Please sign in to comment.