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
@@ -142,11 +142,15 @@ impl IntoRecord for Event<Test> {
}
pub trait IntoRecords {
fn into_records(self) -> Vec<EventRecord<<Test as pezframe_system::Config>::RuntimeEvent, H256>>;
fn into_records(
self,
) -> Vec<EventRecord<<Test as pezframe_system::Config>::RuntimeEvent, H256>>;
}
impl<E: IntoRecord> IntoRecords for Vec<E> {
fn into_records(self) -> Vec<EventRecord<<Test as pezframe_system::Config>::RuntimeEvent, H256>> {
fn into_records(
self,
) -> Vec<EventRecord<<Test as pezframe_system::Config>::RuntimeEvent, H256>> {
self.into_iter().map(|e| e.into_record()).collect()
}
}