Skip to content

Commit 8702bbd

Browse files
committed
chore: remove debug print
1 parent 02530ac commit 8702bbd

File tree

1 file changed

+0
-2
lines changed
  • crates/sound_hint_processor/src/syscall_handler

1 file changed

+0
-2
lines changed

crates/sound_hint_processor/src/syscall_handler/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,12 @@ impl traits::SyscallHandler for CallContractHandlerRelay {
104104
type Response = CallContractResponse;
105105

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

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

0 commit comments

Comments
 (0)