Skip to content

Commit dfa3b43

Browse files
committed
Fix Clippy for 1.73
1 parent 6ae4c22 commit dfa3b43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_node/store/src/state_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ impl BlockMap {
247247
let slot_map = self
248248
.blocks
249249
.entry(block_root)
250-
.or_insert_with(SlotMap::default);
250+
.or_default();
251251
slot_map.slots.insert(slot, state_root);
252252
}
253253

0 commit comments

Comments
 (0)