Skip to content

Commit

Permalink
chore: print searched location on miss on sign-with-legacy-keychain
Browse files Browse the repository at this point in the history
  • Loading branch information
dj8yf0μl committed Nov 30, 2024
1 parent 4f19533 commit 19b5236
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ impl SignLegacyKeychainContext {
let signer_access_key_json =
std::fs::read(&signer_access_key_file_path).wrap_err_with(|| {
format!(
"Access key file for account <{}> on network <{}> not found!",
"Access key file for account <{}> on network <{}> not found! \nSearch location: {:?}",
previous_context.prepopulated_transaction.signer_id,
network_config.network_name
network_config.network_name, signer_access_key_file_path
)
})?;
let signer_access_key: super::AccountKeyPair =
Expand Down

0 comments on commit 19b5236

Please sign in to comment.