Skip to content

Commit

Permalink
Some formatting update.
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuDutSik committed Dec 6, 2024
1 parent ce70607 commit d5da4ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions linera-chain/src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ use linera_execution::{
ServiceRuntimeEndpoint, TransactionTracker,
};
use linera_views::{
bucket_queue_view::BucketQueueView,
context::Context,
log_view::LogView,
bucket_queue_view::BucketQueueView,
reentrant_collection_view::ReentrantCollectionView,
register_view::RegisterView,
set_view::SetView,
Expand Down Expand Up @@ -215,7 +215,8 @@ where
/// Mailboxes used to receive messages indexed by their origin.
pub inboxes: ReentrantCollectionView<C, Origin, InboxStateView<C>>,
/// A queue of unskippable bundles, with the timestamp when we added them to the inbox.
pub unskippable_bundles: BucketQueueView<C, TimestampedBundleInInbox, TIMESTAMPBUNDLE_BUCKET_SIZE>,
pub unskippable_bundles:
BucketQueueView<C, TimestampedBundleInInbox, TIMESTAMPBUNDLE_BUCKET_SIZE>,
/// Unskippable bundles that have been removed but are still in the queue.
pub removed_unskippable_bundles: SetView<C, BundleInInbox>,
/// Mailboxes used to send messages, indexed by their target.
Expand Down
2 changes: 1 addition & 1 deletion linera-chain/src/outbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use linera_base::data_types::{ArithmeticError, BlockHeight};
#[cfg(with_testing)]
use linera_views::context::{create_test_memory_context, MemoryContext};
use linera_views::{
context::Context,
bucket_queue_view::BucketQueueView,
context::Context,
register_view::RegisterView,
views::{ClonableView, View, ViewError},
};
Expand Down

0 comments on commit d5da4ef

Please sign in to comment.