Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed Jan 19, 2024
1 parent 0b58f14 commit 7e9d929
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/account.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ impl From<Arc<SigningKey>> for AccountInfo {
fn from(value: Arc<SigningKey>) -> Self {
let private_key = value;
let public_key = private_key.verifying_key();
let public_key = tendermint::PublicKey::from_raw_secp256k1(public_key.to_bytes().as_slice()).unwrap();
let public_key =
tendermint::PublicKey::from_raw_secp256k1(public_key.to_bytes().as_slice()).unwrap();

AccountInfo {
private_key,
Expand Down

0 comments on commit 7e9d929

Please sign in to comment.