Fix Clippy for 1.73

This commit is contained in:
Michael Sproul
2023-10-11 14:03:11 +11:00
parent 6ae4c22d56
commit dfa3b4325a

View File

@@ -247,7 +247,7 @@ impl BlockMap {
let slot_map = self
.blocks
.entry(block_root)
.or_insert_with(SlotMap::default);
.or_default();
slot_map.slots.insert(slot, state_root);
}