Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanjay176 committed Jun 23, 2023
1 parent 3ad8c34 commit 8c6e4d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon_node/beacon_chain/src/observed_aggregates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ pub enum Error {

/// A `HashMap` that contains entries related to some `Slot`.
struct SlotHashSet<I> {
/// Contains a vector of maximally-sized aggregation bitfields/bitvectors
/// Contains a vector of maximally-sized aggregation bitfields/bitvectors
/// such that no bitfield/bitvector is a subset of any other in the list.
map: HashMap<Hash256, Vec<I>>,
slot: Slot,
Expand Down Expand Up @@ -200,7 +200,7 @@ impl<I> SlotHashSet<I> {
if item.is_superset(&existing) {
// Replace the item with the new item
*existing = item.get_item();
return Ok(ObserveOutcome::Subset)
return Ok(ObserveOutcome::Subset);
}
}
}
Expand Down

0 comments on commit 8c6e4d1

Please sign in to comment.