Skip to content

Commit

Permalink
Remove unused Lock error
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Aug 22, 2023
1 parent 7646b1d commit 5f67d2b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions contracts/provider/vault/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use cosmwasm_std::{Addr, StdError, Uint128};
use cw_utils::{ParseReplyError, PaymentError};
use mesh_sync::{LockError, RangeError, Tx, ValueRange};
use mesh_sync::{RangeError, Tx, ValueRange};
use thiserror::Error;

#[derive(Error, Debug, PartialEq)]
Expand All @@ -14,9 +14,6 @@ pub enum ContractError {
#[error("{0}")]
ParseReply(#[from] ParseReplyError),

#[error("{0}")]
Lock(#[from] LockError),

#[error("{0}")]
Range(#[from] RangeError),

Expand Down

0 comments on commit 5f67d2b

Please sign in to comment.