Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions vm/src/vm/runners/cairo_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1539,11 +1539,8 @@ impl CairoRunner {
.builtin_runners
.iter()
.filter(|builtin| {
// Those segments are not treated as builtins by the prover.
!matches!(
builtin,
BuiltinRunner::SegmentArena(_) | BuiltinRunner::Output(_)
)
// `SegmentArena` isn't treated as a builtin by the prover.
!matches!(builtin, BuiltinRunner::SegmentArena(_))
})
.map(|builtin| {
let (index, _) = builtin.get_memory_segment_addresses();
Expand Down
Loading