Skip to content

Commit

Permalink
Small fix to displaying verifying key
Browse files Browse the repository at this point in the history
  • Loading branch information
ameba23 committed Nov 13, 2024
1 parent f96bda5 commit f05196c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/test-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ pub async fn run_command(
if cli.json {
Ok(serde_json::to_string_pretty(&verifying_key)?)
} else {
Ok(format!("Verifying key: {},\n{:?}", hex::encode(verifying_key), registered_info))
Ok(format!("Verifying key: {},\n{:?}", verifying_key, registered_info))
}
},
CliCommand::Sign { signature_verifying_key, message, auxilary_data, mnemonic_option } => {
Expand Down

0 comments on commit f05196c

Please sign in to comment.