Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Remove more debug statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
azteca1998 committed Jun 13, 2024
1 parent ab290e5 commit 8a33305
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/execution/execution_entry_point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ impl ExecutionEntryPoint {
sierra: Some(sierra_program_and_entrypoints),
..
} => {
dbg!("casm");
let mut transactional_state = state.create_transactional()?;

let program_cache = program_cache.unwrap_or_else(|| {
Expand Down Expand Up @@ -718,7 +717,6 @@ impl ExecutionEntryPoint {
.iter()
.find(|entry_point| entry_point.selector == self.entry_point_selector.to_biguint())
.unwrap();
dbg!(&entry_point);
let native_executor: NativeExecutor = {
let mut cache = program_cache.borrow_mut();
let cache = &mut *cache;
Expand Down Expand Up @@ -763,8 +761,6 @@ impl ExecutionEntryPoint {
.find(|x| x.id.id == (entry_point.function_idx as u64))
.unwrap();

dbg!(&entry_point_fn.id.debug_name.as_ref());
dbg!(&entry_point_fn.params);
std::fs::write("hello.sierra", sierra_program.to_string()).unwrap();

let entry_point_id = &entry_point_fn.id;
Expand Down

0 comments on commit 8a33305

Please sign in to comment.