Skip to content

Commit

Permalink
Remove noisy logs (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhuaaa authored Feb 14, 2024
1 parent 24ee51d commit 20b824e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions xmtp_mls/src/credential/validated_legacy_signed_public_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ impl TryFrom<LegacySignedPublicKeyProto> for ValidatedLegacySignedPublicKey {
))?;
let wallet_signature = match union {
Union::WalletEcdsaCompact(wallet_ecdsa_compact) => {
info!("Reading WalletEcdsaCompact from legacy key");
let mut wallet_signature = wallet_ecdsa_compact.bytes.clone();
wallet_signature.push(wallet_ecdsa_compact.recovery as u8); // TODO: normalize recovery ID if necessary
if wallet_signature.len() != 65 {
Expand All @@ -82,7 +81,6 @@ impl TryFrom<LegacySignedPublicKeyProto> for ValidatedLegacySignedPublicKey {
wallet_signature
}
Union::EcdsaCompact(ecdsa_compact) => {
info!("Reading EcdsaCompact from legacy key");
let mut signature = ecdsa_compact.bytes.clone();
signature.push(ecdsa_compact.recovery as u8); // TODO: normalize recovery ID if necessary
if signature.len() != 65 {
Expand Down

0 comments on commit 20b824e

Please sign in to comment.