chore: regenerate umbrella crate, fix feature propagation

This commit is contained in:
2025-12-16 11:28:32 +03:00
parent dd6d48f528
commit 620b0e3aa0
1358 changed files with 9464 additions and 7656 deletions
+6 -2
View File
@@ -163,7 +163,8 @@ impl<AccountId> IdentityVerifier<AccountId> for () {
}
}
/// The provider of a collective action interface, for example an instance of `pezpallet-collective`.
/// The provider of a collective action interface, for example an instance of
/// `pezpallet-collective`.
pub trait ProposalProvider<AccountId, Hash, Proposal> {
/// Add a new proposal.
/// Returns a proposal length and active proposals count if successful.
@@ -430,7 +431,10 @@ pub mod pezpallet {
impl<T: Config<I>, I: 'static> BuildGenesisConfig for GenesisConfig<T, I> {
fn build(&self) {
for m in self.fellows.iter().chain(self.allies.iter()) {
assert!(Pezpallet::<T, I>::has_identity(m).is_ok(), "Member does not set identity!");
assert!(
Pezpallet::<T, I>::has_identity(m).is_ok(),
"Member does not set identity!"
);
}
if !self.fellows.is_empty() {