Skip to content

Commit

Permalink
Update method_type.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucagiorgino committed Feb 27, 2024
1 parent f85122e commit 2980e82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion identity_verification/src/verification_method/method_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ impl MethodType {
/// in the [`publicKeyJwk`](crate::MethodData::PublicKeyJwk) entry.
pub const JSON_WEB_KEY: Self = Self(Cow::Borrowed(JSON_WEB_KEY_METHOD_TYPE));
/// The `EcdsaSecp256k1RecoverySignature2020` method type.
pub const ECDSA_SECP256K1_RECOVERY_SIGNATURE_2020: Self = Self(Cow::Borrowed(ECDSA_SECP256K1_RECOVERY_SIGNATURE_2020_STR));
pub const ECDSA_SECP256K1_RECOVERY_SIGNATURE_2020: Self =
Self(Cow::Borrowed(ECDSA_SECP256K1_RECOVERY_SIGNATURE_2020_STR));
}

impl MethodType {
Expand Down

0 comments on commit 2980e82

Please sign in to comment.