Skip to content

Commit

Permalink
Merge branch 'main' into feat/os_keychain
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal authored Dec 19, 2024
2 parents cfdb324 + 7a50b86 commit 8e158a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@ jobs:
repo: context.repo.repo,
release_id: ${{ github.event.release.id }},
name: '${{ env.STELLAR_CLI_INSTALLER }}',
data: fs.readFileSync('Output/stellar-installer.exe'),
data: fs.readFileSync('${{ env.STELLAR_CLI_INSTALLER }}'),
});
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 @@ -164,7 +164,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 8e158a1

Please sign in to comment.