Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
neitdung committed Jul 29, 2024
1 parent c22ff15 commit 4f287bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions contracts/provider/vault/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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]]
Expand Down
2 changes: 1 addition & 1 deletion contracts/provider/vault/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 4f287bd

Please sign in to comment.