Browse Source

Remove print statements in update_cred protocol

onyinyang 2 months ago
parent
commit
d1e333c817
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/proto/update_cred.rs

+ 0 - 2
src/proto/update_cred.rs

@@ -103,7 +103,6 @@ impl BridgeAuth {
                 {
                     Some(old_keys) => old_keys,
                     None => {
-                        println!("Back here");
                         return Err(CMZError::RevealAttrMissing("Key", "Mismatch"));
                     }
                 };
@@ -187,7 +186,6 @@ mod tests {
         );
         let (request, client_state) = update_cred_request.unwrap();
         let update_cred_response = th.ba.handle_update_cred(old_pub, request);
-        println!("Update cred response: {:?}", update_cred_response);
         assert!(
             update_cred_response.is_ok(),
             "Update cred response from server should succeed"