Skip to content

Commit

Permalink
Fix Clippy for 1.73
Browse files Browse the repository at this point in the history
michaelsproul committed Oct 11, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 6ae4c22 commit dfa3b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon_node/store/src/state_cache.rs
Original file line number Diff line number Diff line change
@@ -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);
}

0 comments on commit dfa3b43

Please sign in to comment.