Skip to content

Commit

Permalink
feat(pallet-communities-manager): add maybe_track_info parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
pandres95 committed Apr 23, 2024
1 parent 7c3c63e commit 6bc63c8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pallets/communities-manager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ use frame_support::{
};
use frame_system::pallet_prelude::{BlockNumberFor, OriginFor};
use pallet_communities::{
types::{
AccountIdLookupOf, AccountIdOf, CommunityIdOf, DecisionMethodFor, NativeBalanceOf, PalletsOriginOf,
RuntimeOriginFor,
},
types::{AccountIdOf, CommunityIdOf, DecisionMethodFor, NativeBalanceOf, PalletsOriginOf, RuntimeOriginFor},
Origin as CommunityOrigin,
};
use pallet_nfts::CollectionConfig;
Expand Down Expand Up @@ -105,7 +102,8 @@ pub mod pallet {
name: CommunityName,
maybe_admin_origin: Option<PalletsOriginOf<T>>,
maybe_decision_method: Option<DecisionMethodFor<T>>,
_maybe_first_member: Option<AccountIdLookupOf<T>>,
maybe_track_info: Option<TrackInfoOf<T>>,
// _maybe_first_member: Option<AccountIdLookupOf<T>>,
) -> DispatchResult {
let maybe_deposit = T::CreateOrigin::ensure_origin(origin)?;

Expand Down Expand Up @@ -140,7 +138,7 @@ pub mod pallet {
// Create governance track for community
T::Tracks::insert(
community_id,
Self::default_tack(community_name),
maybe_track_info.unwrap_or(Self::default_tack(community_name)),
community_origin.into_caller(),
)?;
// Induct community at Kreivo Governance with rank 1
Expand Down

0 comments on commit 6bc63c8

Please sign in to comment.