Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions foundry/run_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ fn new_miner(
Some(ref engine_signer) => match miner.set_author((*engine_signer).into_address()) {
Err(AccountProviderError::NotUnlocked) => {
return Err(
"The account is not unlocked. Specify the password path using --password-path option."
.to_string(),
format!("The account {} is not unlocked. The key file should exist in the keys_path directory, and the account's password should exist in the password_path file.", engine_signer)
)
}
Err(e) => return Err(format!("{}", e)),
Expand Down