Skip to content

Commit 151dc2e

Browse files
committed
Remove debugging prints
1 parent 64a1075 commit 151dc2e

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

vm/src/hint_processor/builtin_hint_processor/builtin_hint_processor_definition.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,6 @@ impl HintProcessorLogic for BuiltinHintProcessor {
230230
);
231231
}
232232

233-
println!("{}", hint_data.code);
234-
235233
let hint_func = hint_data.f.unwrap(); // TODO: Remove unwrap
236234

237235
hint_func(
@@ -518,7 +516,6 @@ impl HintProcessorLogic for BuiltinHintProcessor {
518516
// super::simulated_builtins::get_simulated_builtin_base
519517
// }
520518
code => {
521-
println!("#################################");
522519
return Err(
523520
crate::vm::errors::vm_errors::VirtualMachineError::CompileHintFail(
524521
code.to_string().into_boxed_str(),

vm/src/vm/runners/cairo_runner.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,6 @@ impl CairoRunner {
651651
.hints_collection
652652
.iter_hints()
653653
.map(|hint| {
654-
println!("{:?}", hint.code);
655654
hint_executor
656655
.compile_hint(
657656
&hint.code,

0 commit comments

Comments
 (0)