Skip to content

Commit

Permalink
keys: generate 24-word keys
Browse files Browse the repository at this point in the history
Close #1803
  • Loading branch information
leighmcculloch committed Dec 19, 2024
1 parent e5454e6 commit e644732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/config/secret.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl Secret {
let seed_phrase = if let Some(seed) = seed.map(str::as_bytes) {
sep5::SeedPhrase::from_entropy(seed)
} else {
sep5::SeedPhrase::random(sep5::MnemonicType::Words12)
sep5::SeedPhrase::random(sep5::MnemonicType::Words24)
}?
.seed_phrase
.into_phrase();
Expand Down

0 comments on commit e644732

Please sign in to comment.