File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
crates/sound_hint_processor/src/syscall_handler Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff 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 _ => {
You can’t perform that action at this time.
0 commit comments