Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wischli committed Jun 26, 2024
1 parent cb9bb3b commit 05c50aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runtime/integration-tests/src/utils/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use cfg_types::{
tokens::{AssetMetadata, CurrencyId},
};
use parity_scale_codec::Encode;
use runtime_common::instances::CouncilCollective;
use sp_core::Get;
use sp_runtime::{BuildStorage, FixedPointNumber, Storage};

Expand Down Expand Up @@ -78,7 +79,7 @@ pub fn assets<'a, T: Runtime>(
pub fn council_members<T: Runtime>(
members: impl IntoIterator<Item = Keyring>,
) -> impl BuildStorage {
pallet_collective::GenesisConfig::<T, cfg_primitives::CouncilCollective> {
pallet_collective::GenesisConfig::<T, CouncilCollective> {
phantom: Default::default(),
members: members.into_iter().map(|acc| acc.id().into()).collect(),
}
Expand Down

0 comments on commit 05c50aa

Please sign in to comment.