Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions clap-utils/src/keypair.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,8 @@ impl DefaultSigner {
})
.unwrap_or_else(|| self.path.clone());
std::io::Error::other(format!(
"No default signer found, run \"solana-keygen new -o {}\" to create a new \
one",
default_path
"No default signer found, run \"solana-keygen new -o {default_path}\" to create a new \
one"
))
})?;
*self.is_path_checked.borrow_mut() = true;
Expand Down
5 changes: 2 additions & 3 deletions clap-v3-utils/src/keypair.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,8 @@ impl DefaultSigner {
})
.unwrap_or_else(|| self.path.clone());
std::io::Error::other(format!(
"No default signer found, run \"solana-keygen new -o {}\" to create a new \
one",
default_path
"No default signer found, run \"solana-keygen new -o {default_path}\" to create a new \
one"
))
})?;
*self.is_path_checked.borrow_mut() = true;
Expand Down
Loading