Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Dec 20, 2024
1 parent d3b2296 commit 6af0776
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/soroban-cli/src/config/secret.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ impl Args {
} else {
println!("Type a secret key or 24 word seed phrase:");
let secret_key = read_password()?;
secret_key.parse().map_err(|_| Error::InvalidSecretOrSeedPhrase)
secret_key
.parse()
.map_err(|_| Error::InvalidSecretOrSeedPhrase)
}
}
}
Expand Down

0 comments on commit 6af0776

Please sign in to comment.