Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Jan 21, 2024
1 parent 3518e00 commit 783c2a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ pub enum Error {
#[error(transparent)]
ContractJson(#[from] JsonError),
#[error(transparent)]
AccountError(#[from] AccountError<AccountSignError<SignError>>),
Account(#[from] AccountError<AccountSignError<SignError>>),
#[error(transparent)]
Anyhow(#[from] anyhow::Error),
#[error("Contract artifacts is missing: {0}")]
ArtifactsMissing(String),
#[error(transparent)]
NonAsciiNameError(#[from] NonAsciiNameError),
NonAsciiName(#[from] NonAsciiNameError),
}

impl From<Error> for LuaError {
Expand Down

0 comments on commit 783c2a6

Please sign in to comment.