Skip to content
Merged
Changes from 6 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
2 changes: 1 addition & 1 deletion vm/src/vm/runners/cairo_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ impl CairoRunner {
}

/// Creates the builtin runners according to the builtins used by the program and the selected layout
/// When running in proof_mode, all builtins in the layout will be created, and only those in the program will be included
/// When running in proof_mode, all builtins in the layout will be created and included
/// When not running in proof_mode, only program builtins will be created and included
/// Unless `allow_missing_builtins` is set to true, an error will be returned if a builtin is included in the program but not on the layout
pub fn initialize_builtins(&mut self, allow_missing_builtins: bool) -> Result<(), RunnerError> {
Expand Down
Loading