diff --git a/contracts/provider/vault/Cargo.toml b/contracts/provider/vault/Cargo.toml index f3d76812..668c2910 100644 --- a/contracts/provider/vault/Cargo.toml +++ b/contracts/provider/vault/Cargo.toml @@ -22,7 +22,7 @@ mt = ["library", "sylvia/mt"] mesh-apis = { workspace = true } mesh-sync = { workspace = true } mesh-bindings = { workspace = true } -mesh-native-staking = { workspace = true, features = ["mt", "library"] } +mesh-native-staking = { workspace = true } sylvia = { workspace = true } cosmwasm-schema = { workspace = true } @@ -42,7 +42,6 @@ test-case = { workspace = true } derivative = { workspace = true } anyhow = { workspace = true } mesh-external-staking = { workspace = true, features = ["mt"] } -mesh-native-staking = { workspace = true, features = ["mt"] } mesh-native-staking-proxy = { workspace = true, features = ["mt"] } [[bin]] diff --git a/contracts/provider/vault/src/lib.rs b/contracts/provider/vault/src/lib.rs index e9948f04..1876926d 100644 --- a/contracts/provider/vault/src/lib.rs +++ b/contracts/provider/vault/src/lib.rs @@ -1,8 +1,8 @@ pub mod contract; pub mod error; -pub mod mock; pub mod msg; #[cfg(test)] pub mod multitest; +pub mod mock; mod state; pub mod txs;