Skip to content

Commit

Permalink
fix: script to generate near account keys has a typo (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppca authored Jul 23, 2024
1 parent 044c05f commit 8480eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/scripts/generate_keys/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fn main() {
println!("sign public key sign_pk: {}", sign_pk);
println!("sign secret key sign_sk: {}", sign_sk);
let near_account_sk = near_crypto::SecretKey::from_random(near_crypto::KeyType::ED25519);
let near_account_pk = sign_sk.public_key();
let near_account_pk = near_account_sk.public_key();
println!("near account public key: {}", near_account_pk);
println!("near account secret key: {}", near_account_sk);
}

0 comments on commit 8480eeb

Please sign in to comment.