Skip to content

Commit e8a0af1

Browse files
committed
Remove dependancy in cairo pie when collectiog builtin segments info (#2022)
1 parent d5b5023 commit e8a0af1

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Cairo-VM Changelog
22

33
#### Upcoming Changes
4+
* fix: Updated the logic for collecting builtin segment data for prover input info, removing dependency on the existence of stop pointers. [#2022](https://github.com/lambdaclass/cairo-vm/pull/2022)
45

56
* chore: update cairo-lang dependencies to 2.12.0-dev.0 #[2040](https://github.com/lambdaclass/cairo-vm/pull/2040)
67

vm/src/vm/runners/cairo_runner.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,11 @@ impl CairoRunner {
15161516
})
15171517
.collect();
15181518

1519+
<<<<<<< HEAD
15191520
let builtins_segments: BTreeMap<usize, BuiltinName> = self
1521+
=======
1522+
let builtins_segments: HashMap<usize, BuiltinName> = self
1523+
>>>>>>> bdd75ddb (Remove dependancy in cairo pie when collectiog builtin segments info (#2022))
15201524
.vm
15211525
.builtin_runners
15221526
.iter()

0 commit comments

Comments
 (0)