File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -64,16 +64,22 @@ impl ProvingService for LocalProver {
6464 async fn get_vks ( & self , req : GetVkRequest ) -> GetVkResponse {
6565 let mut vks = vec ! [ ] ;
6666 for hard_fork_name in self . config . circuits . keys ( ) {
67+ println ! ( "\n \n \n hard fork = {:?}" , hard_fork_name) ;
6768 let handler = self . new_handler ( hard_fork_name) ;
6869 for proof_type in & req. proof_types {
6970 let vk = handler. get_vk ( * proof_type) . await ;
71+ println ! ( "proof type = {:?}, vk = {:?}" , proof_type, vk) ;
7072
7173 if let Some ( vk) = vk {
72- vks. push ( base64:: encode ( vk) ) ;
74+ let vk_base64 = base64:: encode ( vk) ;
75+ println ! ( "vk (base64) = {:?}" , vk_base64) ;
76+ vks. push ( vk_base64) ;
7377 }
7478 }
7579 }
7680
81+ println ! ( "\n \n \n all vks = {:#?}" , vks) ;
82+
7783 GetVkResponse { vks, error : None }
7884 }
7985 async fn prove ( & mut self , req : ProveRequest ) -> ProveResponse {
You can’t perform that action at this time.
0 commit comments