Skip to content

Commit

Permalink
chore: silent get_public_key by default in sign examples
Browse files Browse the repository at this point in the history
  • Loading branch information
dj8yf0μl committed Jan 18, 2024
1 parent 5b9b7bb commit dcbf9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/common/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ where
env_logger::builder().init();
let hd_path = BIP32Path::from_str("44'/397'/0'/0'/1'").unwrap();

let public_key = near_ledger::get_public_key(hd_path.clone())?;
let public_key = near_ledger::get_public_key_with_display_flag(hd_path.clone(), false)?;
display_pub_key(public_key);

let unsigned_transaction = f_transaction(public_key);
Expand Down

0 comments on commit dcbf9ba

Please sign in to comment.