Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ struct Args {
num_args = 0..=1,
default_missing_value = "true",
help = "Allow initializing the runner with builtins in the program that are not present in
the layout."
the layout.",
conflicts_with = "proof_mode",
)]
allow_missing_builtins: bool,
#[clap(
Expand Down Expand Up @@ -158,9 +159,9 @@ fn main() -> Result<(), Box<dyn Error>> {
&args.dynamic_params_file,
args.layout,
args.proof_mode,
args.disable_trace_padding,
args.allow_missing_builtins,
args.relocate_mem, // will affect only if proof_mode is true
args.disable_trace_padding, // will affect only if proof_mode is true
args.allow_missing_builtins, // will affect only if proof_mode is false
args.relocate_mem, // will affect only if proof_mode is true
)?;

let mut runner = cairo_run_program(&program, program_input_contents, cairo_run_config)?;
Expand Down