Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgardo committed Apr 28, 2024
1 parent 7c01f98 commit c3007bb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ pub fn verifiable_credential_backup_encryption_key_hex(
) -> Result<String, ConcordiumWalletCryptoError> {
get_verifiable_credential_backup_encryption_key_aux(seed_hex, net.as_str()).map_err(|e| {
ConcordiumWalletCryptoError::CallFailed {
call: format!("verifiable_credential_backup_encryption_key_hex(seed_hex: ..., net: {net}"),
call: format!(
"verifiable_credential_backup_encryption_key_hex(seed_hex: ..., net: {net}"
),
msg: format!("{:#}", e),
}
})
Expand Down Expand Up @@ -636,7 +638,9 @@ pub fn account_credential_deployment_signed_payload_hex(
})
.map(serialize_credential_deployment_payload)
.map_err(|e| ConcordiumWalletCryptoError::CallFailed {
call: format!("account_credential_deployment_signed_payload_hex(credential: {credential:?})"),
call: format!(
"account_credential_deployment_signed_payload_hex(credential: {credential:?})"
),
msg: format!("{:#}", e),
})
}

0 comments on commit c3007bb

Please sign in to comment.