| 2231 | // entries can be re-parsed standalone later (the diff meta sweep); |
| 2232 | // the Address→Name lookup is dropped (LazyNamed carries the Names). |
| 2233 | let num_names = get_u64(&mut buf)?; |
| 2234 | let mut names_lookup: FxHashMap<Address, Name> = FxHashMap::default(); |
| 2235 | let mut name_reverse_index: NameReverseIndex = |
| 2236 | Vec::with_capacity(num_names as usize + 1); |
| 2237 | let anon_addr = Address::from_blake3_hash(*Name::anon().get_hash()); |
| 2238 | names_lookup.insert(anon_addr, Name::anon()); |
| 2239 | for _ in 0..num_names { |