@@ -55,7 +55,7 @@ impl ExecutionResponse {
55
55
let program = ProgramNative :: from_str ( program) . map_err ( |e| e. to_string ( ) ) ?;
56
56
let verifying_key = process
57
57
. get_verifying_key ( program. id ( ) , function_id)
58
- . map_err ( |_| format ! ( "Could not find verifying key for {:? }/{:? }" , program. id( ) , function_id) ) ?;
58
+ . map_err ( |_| format ! ( "Could not find verifying key for {}/{}" , program. id( ) , function_id) ) ?;
59
59
60
60
Ok ( Self {
61
61
execution,
@@ -75,7 +75,7 @@ impl ExecutionResponse {
75
75
) -> Result < ( ) , String > {
76
76
let proving_key = process
77
77
. get_proving_key ( program_id, function_id)
78
- . map_err ( |_| format ! ( "Could not find proving key for {:? }/{:? }" , program_id, function_id) ) ?;
78
+ . map_err ( |_| format ! ( "Could not find proving key for {}/{}" , program_id, function_id) ) ?;
79
79
self . proving_key = Some ( proving_key) ;
80
80
Ok ( ( ) )
81
81
}
@@ -131,7 +131,7 @@ impl ExecutionResponse {
131
131
/// Returns the function identifier
132
132
#[ wasm_bindgen( js_name = "getFunctionId" ) ]
133
133
pub fn get_function_id ( & self ) -> String {
134
- format ! ( "{:?}" , self . function_id)
134
+ self . function_id . to_string ( )
135
135
}
136
136
137
137
/// Returns the program
0 commit comments