Skip to content

Commit

Permalink
Merge branch 'main' into fix/init-base-contract-inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman authored Mar 5, 2024
2 parents 6231beb + 38d8650 commit 6b90545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/commands/config/locator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ pub enum Error {
NetworkFileRead { path: PathBuf },
#[error(transparent)]
Toml(#[from] toml::de::Error),
#[error("Seceret file failed to deserialize")]
#[error("Secret file failed to deserialize")]
Deserialization,
#[error("Failed to write identity file:{filepath}: {error}")]
IdCreationFailed { filepath: PathBuf, error: io::Error },
#[error("Seceret file failed to deserialize")]
#[error("Secret file failed to deserialize")]
NetworkDeserialization,
#[error("Failed to write network file: {0}")]
NetworkCreationFailed(std::io::Error),
Expand Down
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/config/secret.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub enum Error {
InvalidSecretKey,
// #[error("seed_phrase must be 12 words long, found {len}")]
// InvalidSeedPhrase { len: usize },
#[error("seceret input error")]
#[error("secret input error")]
PasswordRead,
#[error(transparent)]
Secret(#[from] stellar_strkey::DecodeError),
Expand Down

0 comments on commit 6b90545

Please sign in to comment.