Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Apr 8, 2022
1 parent 82f84d1 commit 551e830
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frame/alliance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,14 @@ sp-runtime = { version = "6.0.0", default-features = false, path = "../../primit
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
pallet-collective = { version = "4.0.0-dev", path = "../collective", default-features = false, optional = true }
pallet-identity = { version = "4.0.0-dev", path = "../identity", default-features = false, optional = true }

pallet-identity = { version = "4.0.0-dev", path = "../identity", default-features = false }

[dev-dependencies]
hex-literal = "0.3.1"
sha2 = "0.10.1"
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
pallet-collective = { version = "4.0.0-dev", path = "../collective" }
pallet-identity = { version = "4.0.0-dev", path = "../identity" }

[features]
default = ["std"]
Expand All @@ -50,6 +49,7 @@ std = [
"sp-runtime/std",
"frame-support/std",
"frame-system/std",
"pallet-identity/std",
]
runtime-benchmarks = [
"hex",
Expand Down
1 change: 1 addition & 0 deletions frame/alliance/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ use frame_support::{
},
weights::{Pays, Weight},
};
use pallet_identity::IdentityField;

pub use pallet::*;
pub use types::*;
Expand Down

0 comments on commit 551e830

Please sign in to comment.