(&self, slow_threshold: Duration)
| 2250 | /// positively-used refs + projection block pointers) at block |
| 2251 | /// granularity, deduped, self-edges dropped. These are exactly the |
| 2252 | /// edges that generate a shard's thin frontier, i.e. its ingress. |
| 2253 | #[allow(clippy::cast_possible_truncation)] // block sizes clamped to u32::MAX |
| 2254 | fn static_block_profile(env: &IxonEnv) -> BlockProfile { |
| 2255 | use rayon::prelude::*; |
| 2256 | let addrs: Vec<Address> = |
| 2257 | env.consts.iter().map(|e| e.key().clone()).collect(); |
no outgoing calls
no test coverage detected