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 3fb0344 commit 53488aeCopy full SHA for 53488ae
vm/src/vm/runners/cairo_pie.rs
@@ -289,6 +289,10 @@ impl CairoPie {
289
return Err(CairoPieValidationError::DiffAdditionalData);
290
}
291
for (name, data) in self.additional_data.0.iter() {
292
+ // As documented above, we skip the pedersen field when comparing.
293
+ if *name == BuiltinName::pedersen {
294
+ continue;
295
+ }
296
if !pie.additional_data.0.get(name).is_some_and(|d| d == data) {
297
return Err(CairoPieValidationError::DiffAdditionalDataForBuiltin(*name));
298
0 commit comments