Skip to content

Commit e5c079c

Browse files
Add_missing_builtins_to_pie_metadata_serialiazation (#1868)
Co-authored-by: Pedro Fontana <[email protected]>
1 parent 84e513d commit e5c079c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## Cairo-VM Changelog
22

33
#### Upcoming Changes
4+
* fix: [#1868](https://github.com/lambdaclass/cairo-vm/pull/1855):
5+
* Adds logic to include the 3 new builtins in `builtin_segments` when serializing the output cairo pie's metadata.
6+
47
* fix: [#1855](https://github.com/lambdaclass/cairo-vm/pull/1855):
58
* Adds logic to skip pedersen additional data comparison when checking pie compatibility.
69

vm/src/vm/runners/cairo_pie.rs

+3
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,9 @@ pub(super) mod serde_impl {
763763
BuiltinName::ec_op,
764764
BuiltinName::keccak,
765765
BuiltinName::poseidon,
766+
BuiltinName::range_check96,
767+
BuiltinName::add_mod,
768+
BuiltinName::mul_mod,
766769
];
767770

768771
for name in BUILTIN_ORDERED_LIST {

0 commit comments

Comments
 (0)