Skip to content

Commit

Permalink
chore: remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
petscheit committed Feb 5, 2025
1 parent 02530ac commit 8702bbd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/sound_hint_processor/src/syscall_handler/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,12 @@ impl traits::SyscallHandler for CallContractHandlerRelay {
type Response = CallContractResponse;

fn read_request(&mut self, vm: &VirtualMachine, ptr: &mut Relocatable) -> SyscallResult<Self::Request> {
println!("reading request");
let ret = Self::Request::from_memory(vm, *ptr)?;
*ptr = (*ptr + Self::Request::cairo_size())?;
Ok(ret)
}

async fn execute(&mut self, request: Self::Request, vm: &mut VirtualMachine) -> SyscallResult<Self::Response> {
println!("executing request");
match request.contract_address {
v if v == call_contract::debug::CONTRACT_ADDRESS => self.debug_call_contract_handler.execute(request, vm).await,
_ => {
Expand Down

0 comments on commit 8702bbd

Please sign in to comment.