Skip to content

Commit

Permalink
Cleanup after merging with upstream branch
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Nov 20, 2024
1 parent 5838343 commit 432ca74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/commands/keys/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ impl Cmd {

if self.config_locator.read_identity(&self.name).is_ok() {
if !self.overwrite {
return Err(Error::IdentityAlreadyExists(self.name.clone()));
return Err(Error::IdentityAlreadyExists(self.name.to_string()));
}

print.exclaimln(format!("Overwriting identity '{}'", &self.name));
print.exclaimln(format!("Overwriting identity '{}'", &self.name.to_string()));
}

if !self.fund {
Expand Down

0 comments on commit 432ca74

Please sign in to comment.