Skip to content

Commit

Permalink
chore: run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanor committed Jul 12, 2023
1 parent 4eab19b commit 3063fe4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/storage/src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ impl Cache {
// `StateRead` trait assumes asynchronous access, and in any case, we
// probably don't want to be reading directly from a `Cache` (?)
self.unwritten_changes.extend(other.unwritten_changes);
self.nonverifiable_changes.extend(other.nonverifiable_changes);
self.nonverifiable_changes
.extend(other.nonverifiable_changes);
self.ephemeral_objects.extend(other.ephemeral_objects);
self.events.extend(other.events);
}
Expand Down

0 comments on commit 3063fe4

Please sign in to comment.