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
@@ -169,7 +169,8 @@ fn map_results(
worst_case_map_values,
additional_trie_layers,
);
let pezpallet_benchmarks = all_benchmarks.entry((pezpallet_name, instance_name)).or_default();
let pezpallet_benchmarks =
all_benchmarks.entry((pezpallet_name, instance_name)).or_default();
pezpallet_benchmarks.push(benchmark_data);
}
Ok(all_benchmarks)
@@ -287,7 +288,10 @@ fn get_benchmark_data(
// We add additional comments showing which storage items were touched.
// We find the worst case proof size, and use that as the final proof size result.
let mut storage_per_prefix = HashMap::<Vec<u8>, Vec<BenchmarkResult>>::new();
let pov_mode = pov_modes.get(&(pezpallet.clone(), benchmark.clone())).cloned().unwrap_or_default();
let pov_mode = pov_modes
.get(&(pezpallet.clone(), benchmark.clone()))
.cloned()
.unwrap_or_default();
let comments = process_storage_results(
&mut storage_per_prefix,
&batch.db_results,
@@ -579,7 +583,8 @@ pub(crate) fn process_storage_results(
let mut prefix_result = result.clone();
let key_info = storage_info_map.get(&prefix);
let pezpallet_name = match key_info {
Some(k) => String::from_utf8(k.pezpallet_name.clone()).expect("encoded from string"),
Some(k) =>
String::from_utf8(k.pezpallet_name.clone()).expect("encoded from string"),
None => "".to_string(),
};
let storage_name = match key_info {