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 789d359 commit 6490c43Copy full SHA for 6490c43
vm/src/hint_processor/builtin_hint_processor/builtin_hint_processor_definition.rs
@@ -510,12 +510,14 @@ impl HintProcessorLogic for BuiltinHintProcessor {
510
cairo0_hints::SECP_REDUCE_X => cairo0_hints::reduce_x,
511
#[cfg(feature = "cairo-0-data-availability-hints")]
512
super::kzg_da::WRITE_DIVMOD_SEGMENT => super::kzg_da::write_div_mod_segment,
513
- code => {
514
- return Err(
515
- crate::vm::errors::vm_errors::VirtualMachineError::CompileHintFail(
516
- code.to_string().into_boxed_str(),
517
- ),
518
- );
+ _code => {
+ return Ok(any_box!(HintProcessorData {
+ code: hint_code.to_string(),
+ ap_tracking: ap_tracking_data.clone(),
+ ids_data,
+ constants,
519
+ f: None
520
+ }))
521
}
522
};
523
0 commit comments