We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc210a1 commit d4252a6Copy full SHA for d4252a6
src/ffi/cred_def.rs
@@ -29,8 +29,8 @@ pub extern "C" fn anoncreds_credential_definition_get_attribute(
29
"tag" => cred_def.tag.to_string().to_owned(),
30
"issuer_id" => cred_def.issuer_id.to_string().to_owned(),
31
"signature_type" => match cred_def.signature_type {
32
- SignatureType::CL => "CL".to_string()
33
- }
+ SignatureType::CL => "CL".to_string(),
+ },
34
s => return Err(err_msg!("Unsupported attribute: {}", s)),
35
};
36
unsafe { *result_p = rust_string_to_c(val) };
0 commit comments